Hi,
I'm a VBA beginner and would appreciate any help and advice you can give.
I have a macro which opens excel workbooks, gathers stats from each, then creates a summary of stats for each date.
The stats are divided into data status's (D00 to D99) and fulfilment status's (F00 to F99) which are named. These are not cell ranges.
I need a way to search the named range for D00, etc. and where found, copy the value in the cell to it's right into a variable, any ideas?
For Each c In [named range]
If c Like "*D00*" Then
?????
End If
Next
Thanks in advance for your help,
Roy
I'm a VBA beginner and would appreciate any help and advice you can give.
I have a macro which opens excel workbooks, gathers stats from each, then creates a summary of stats for each date.
The stats are divided into data status's (D00 to D99) and fulfilment status's (F00 to F99) which are named. These are not cell ranges.
I need a way to search the named range for D00, etc. and where found, copy the value in the cell to it's right into a variable, any ideas?
For Each c In [named range]
If c Like "*D00*" Then
?????
End If
Next
Thanks in advance for your help,
Roy