judgejustin
Board Regular
- Joined
- Mar 3, 2014
- Messages
- 142
I am using the following code to change the name of a tab dependent on cell values. However it only updates if I leave the tab and come back to it. I would like it to update immediately upon the information in the cells changing.
Rich (BB code):
Private Sub Worksheet_Activate()
ActiveSheet.Name = ("Stage 1 #1 ") & ("(") & ActiveSheet.Range("B8") & ("-") & ActiveSheet.Range("C8") & (")")
End Sub