Hello.
I have a code that checks for data in all the worksheets of a workbook, but i want one specific (based on its name) excluded from the search. This is what i wrote but it's not working:
How can it be edited?
I have a code that checks for data in all the worksheets of a workbook, but i want one specific (based on its name) excluded from the search. This is what i wrote but it's not working:
Code:
For Each ws In Worksheets
'Loop Info worksheet
If ws.Name = "Info" Then
Next ws
End
[data checking statements]
Next ws
How can it be edited?