Report post

Are you sure you want to report the post shown below? This will send an email to the ATVO administrators. Please include a short reason for reporting.

Users reporting for no reason may be locked out.


Post

Posted by Nick Thissen
on
If I understood correctly you want to update the data in a spreadsheet with new data while your theme is running?

I think what should work is to use a dynamic spreadsheet (set "External filepath" property) and call the Parse function to make it reload the data.

So for your spreadsheet set External Filepath to some path. Then after the race, you put an actual spreadsheet in that location (make sure it has the same columns as the original). Then in a script simply call
var spreadsheet = item.Theme.Spreadsheets.Find("IFRN_Unofficial_Result.csv")
spreadsheet.Parse();


This should make it re-load the data, and since you set the External Filepath it should read it from the file you just placed.