How do Count how many shapes are on a sheet?

ypjr

New Member
Joined
Aug 11, 2002
Messages
1
Hi every1, hope your all well!!

I'm a bit stuck on this one!

U C..I've created a circle called JFC and I want to be able calculate the total number of JFC's on a sheet?

Any help would be most appreciated!!, Thanks & rgds.

Yousuf.J.R.P a.k.a "The Student" :smile:
 

Excel Facts

When they said...
When they said you are going to "Excel at life", they meant you "will be doing Excel your whole life".
This snippet of VBA will count all the shapes on a worksheet

Sub tst()
Dim i As Integer
i = ActiveSheet.Shapes.Count
MsgBox i
End Sub

Is that what you were after?
 
Upvote 0

Forum statistics

Threads
1,225,280
Messages
6,184,033
Members
453,206
Latest member
Atko

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top