Automate a macro - help please!
Posted by Frank Krumm on November 26, 2001 1:03 PM
I have a macro that I use to evaluate a list of text entries. I run the macro for each entry and the results are placed into another cell. The list of entries is growing rapidly and doing it one-by-one is far from efficient.
Please help me to develop the macro that will let me run the whole list, evaluate each entry, and record the results. For example, if "ABC" and "DEF" are entries, and they evaluate to true, then I would like each of these entries to be placed into individual cells.
Here is the code I have so far:
Dim S
S = Selection.Address
'eval formula'
Range(S).Offset(1,0).Select
Thanks