Hi All
I need some help please,
Hope that makes sense.
So fare I have the below that creates a new report for me, where I’m running out of talent/knowledge. Is the AutoHyper link and the Naming the sheet off and the active cell, on the Master Sheet. i can change the name of the sheet with a Message window very practical.
Any help woudl be amazing, Thanks
I need some help please,
- I need to be able off a button press (i can create the Button etc.)
- Add a New work sheet Report (copy of a pre-existing Report) Have code for this below.
- Re-Name that sheet depending on the name in the current active cell
- Hyperlink link the new report off the active cell.
Hope that makes sense.
R001 | |
R002 | |
R003 | |
So fare I have the below that creates a new report for me, where I’m running out of talent/knowledge. Is the AutoHyper link and the Naming the sheet off and the active cell, on the Master Sheet. i can change the name of the sheet with a Message window very practical.
Any help woudl be amazing, Thanks
VBA Code:
Sub extrasheet()
Set ws = Sheets("Blank Report")
ws.Copy After:=Sheets("Report Types")
Set wsNew = Sheets(Sheets("Report Types").Index + 1)
wsNew.Name = "New Report"
End Sub