SBendBuckeye
Programmer
I have used VBA in Access frequenly and have spun through the Access collections a fair amount. I have been given a very large, ugly, multisheet Excel file to convert.
Are there equivalent Excel collections that I could spin to find all of the cells with formula in them? I'm thinking of something along these lines:
Dim Whatever As Necessary
For Each Blop in MyExcelCollection
If Left$(CurrentCell, 1) = "=" 'Now we have a forumula
Save the formula and cell address
End If
Next Blop
Thanks in advance for any help you can give me!
Are there equivalent Excel collections that I could spin to find all of the cells with formula in them? I'm thinking of something along these lines:
Dim Whatever As Necessary
For Each Blop in MyExcelCollection
If Left$(CurrentCell, 1) = "=" 'Now we have a forumula
Save the formula and cell address
End If
Next Blop
Thanks in advance for any help you can give me!