Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
How can I determine how many equal (=) signs are in my spreadsheet?
|
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
ONE way, if you're really counting formulas is to use Edit/Replace, replacing
= with x=. Excel will tell you how many it replaced. Then replace X= with = to restore it! "GARY" wrote: How can I determine how many equal (=) signs are in my spreadsheet? |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
oops... I see your earlier post now....
-- -SA "GARY" wrote: How can I determine how many equal (=) signs are in my spreadsheet? |
#4
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Run this macro. It'll tell you the number of "=" you have in the active
spreadsheet. Hope this helps! Sub equalnumber() Dim i As Integer Dim cell As Range i = 0 For Each cell In ActiveSheet.UsedRange If cell.Formula Like "*=*" Then i = i + 1 Next cell MsgBox ("There are " & i & " occurences of = in this worksheet") End Sub -- -SA "GARY" wrote: How can I determine how many equal (=) signs are in my spreadsheet? |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Counting occurrences | Excel Discussion (Misc queries) | |||
counting random occurrences | Excel Discussion (Misc queries) | |||
Counting occurrences on a particular date | Excel Worksheet Functions | |||
Counting number of occurrences | Excel Worksheet Functions | |||
counting occurrences in a range | Excel Discussion (Misc queries) |