Hi Greg,
Try this macro:
Dim ws as Worksheet
For Each ws in ThisWorkbook.Sheets
If (ws.Name = ThisWorkbook.ActiveSheet.Range ("A2") then
' do something here if the worksheet exists
Exit for
end if
Next ws
--
http://blog.jausovec.net
"Greg B" je napisal:
I want to have a macro that will look for the corresponding sheet to the
reference in cell "a2"
Is this possible and how is it possible
Thanks
Greg