I need to activate a specific Sheet if corresponding tab is activated
XML
<tab id="books" label="books" onAction = "goTo1">
VBA
Sub goTo1()
Sheet1.Activate
End Sub
It seems onAction attribute for tab element doesn't exist (noComment)
Is there another way to do this?