To activate a tab in Excel one can use a macro like this:
Option Explicit
Sub Activate_Tab()
Dim AltKey As String
AltKey = “%”
SendKeys AltKey & “(N)”, False
SendKeys AltKey & “”, False
End Sub
This will activate the “Insert” tab. To see the other letters for Excel’s tabs press the “Alt” button.
If your “add-in” tab is represented by a letter substitute “N” with the appropriate letter and test if it will activate the “right” tab.
and then click refresh, then refresh entire workbook (an option within this particular add-in).
Have you tried to record a macro while doing these last two steps? As I don't know what add-in you are using it's difficult to give any advice but since it can be intergrated with Excel I would ask the vendor for help.
Alf
Bookmarks