Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hello all,
I have a macro to delete the shapes in an active worksheet. After the shapes are deleted, users will receive a message that they have been deleted. In the message, I would like to insert the number of shapes that were deleted. Can someone help me with counting those deleted shapes? Below is my current code: Dim cMarks As Shape For Each cMarks In ActiveSheet.Shapes If cMarks.Type = 13 Then cMarks.Delete Next cMarks MsgBox "You have removed " & cMarks & " check marks in Worksheet '" & ActiveSheet.Name & "'." Thanks. |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Count Employee Work Time - Don't Double-count Overlapping Apts. | Excel Worksheet Functions | |||
Excel 2000, count, sort a list & count totals? | Excel Worksheet Functions | |||
Excel Count characters in a textbox to display character count? | Excel Programming | |||
Count Intervals of 2 Numeric values in same Row and Return Count across Row | Excel Worksheet Functions | |||
Count Intervals of Filtered TEXT values in Column and Return Count across a Row | Excel Worksheet Functions |