ChristineJ
Well-known Member
- Joined
- May 18, 2009
- Messages
- 771
- Office Version
- 365
- Platform
- Windows
The value in cell C3 of the Mockup sheet is 1. For the simple code below, I'd like to know how to change the "1" in red (the sheet name) so that the value comes from C3 from the Mockup sheet. (Something like Sheets(Sheets("Mockup").Range("C3").Value).Select ???)
Rich (BB code):
Sub Cabin()
Sheets("1").Select
Range("A4").Select
End Sub