Check activate sheet

R

Ron de Bruin

MsgBox ActiveSheet.Name
This will give you the name

With this you can run code if the sheet Mysheet is active

If ActiveSheet.Name = "Mysheet" Then
'your code
End If
 
Top