C Charlie Dec 25, 2007 #1 On the currently active sheet cell F2 has the name of the sheet I want to make active. How do I activate this sheet? thanks, ck
On the currently active sheet cell F2 has the name of the sheet I want to make active. How do I activate this sheet? thanks, ck
R Rick Rothstein \(MVP - VB\) Dec 25, 2007 #3 This should do what you asked... Worksheets(Range("F2").Value).Activate Rick
D Dave Peterson Dec 25, 2007 #4 on error resume next activeworkbook.worksheets(activesheet.range("F2").value).select if err.number <> 0 then beep end if
on error resume next activeworkbook.worksheets(activesheet.range("F2").value).select if err.number <> 0 then beep end if