To work around my script/function refreshing it's calculation I had a script running that would copy the formula, clear the cell, and put the formula back in.
However, my script was somehow edited and now I can't figure out how to code this back...all I have is this base code that is not working and I don't remember how I made it work before...
I am missing a line or two of code but been racking my brain for a few hours =(
function RefreshSignups() {
var spreadsheet = SpreadsheetApp.getActive();
spreadsheet.getRange('L27:T29').activate();
spreadsheet.getActiveRangeList().clear({contentsOnly: true, skipFilteredRows: true});
spreadsheet.getRange('K26').activate();
spreadsheet.getCurrentCell().setValue('REFRESH');
};