Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Using the following syntax, users of Barchart for Excel can invoke a refresh via VBA.

Application.Run "BE_RefreshAll"

You can trigger a data refresh by pasting the VBA code into the Worksheet. Double-click the desired Sheet object in the VBA Project Pane to open the text editor (blank white sheet) within the Visual Basic Editor.

...

Example of code below:

Sub BE_Refresh()
Application.Run "BE_RefreshAll"
End Sub

Run the macros from the Macros button in the Developer tab or assign a macro to a button from the Insert section in the Developer tab.

...