01-19-2023
07:39 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
01-19-2023
07:39 AM
I didn't think this property would be so difficult to access but how do I use this and just pull the active sheets number
I am making a numbering system where i want to use the Sheet Number as a part of the numbering but i cant find how to access it
Any help would be appreciated
Solved! Go to Solution.
01-19-2023
08:08 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
01-19-2023
08:08 AM
Dim oDoc As DrawingDocument = ThisDoc.Document For i = 1 To oDoc.Sheets.Count If oDoc.Sheets.Item(i) Is oDoc.ActiveSheet Then MsgBox(i) End If Next
01-19-2023
08:11 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report