Open a GPJ or GRT file and specify new data using Grapher automation

This article contains a sample script for opening an existing GPJ or GRT file where the supporting data file or project file has been moved to a different location, and the script prompts you for the data file.

 

To run this script in Grapher 15 or newer:

  1. Click here to download the BAS file: SpecifyWorksheet.BAS.
  2. Click Automation | Scripts | Run, select the BAS file from your downloads directory, and click Open.

OR:

  1. Copy the script below.
  2. Open Grapher and turn on the Script Manager by clicking View | Display | Script Manager.
  3. Press Ctrl+A to select all of the existing lines in the Script Manager and then press DELETE.
  4. Press Ctrl+V to paste it into the Script Manager.
  5. Click the green arrow Start/Resume icon in the Script Manager. 

Sub Main

'Initialize Grapher
  Dim Grapher As Object
  Set Grapher = CreateObject("Grapher.Application")
  Grapher.Visible = True

'============================
'User-defined variables
'============================
filepath$ = "C:\temp\"
filename$ = "Plot1.grf"
datafile$ = "newdata.xlsx"
'============================

'Open an existing document
  Set PlotDoc = Grapher.Documents.Open(filepath$+filename$,filepath$+datafile$)

End Sub

 

Updated April 8, 2019

Was this article helpful?
0 out of 0 found this helpful

Comments

0 comments

Please sign in to leave a comment.