I use a script that creates a formula to get the name of the spreadsheet.
But this formula never refreshes, neither when I change the spreadsheet name nor when I reopen the spreadsheet.
I would like if it is possible that it refreshes when I change the name of the spreadsheet. If not possible, at least when I close and reopen the spreadsheet.
Here is the script:
function SPREADSHEETNAME() {
let ss = SpreadsheetApp.getActive();
return ss.getName();
}
I execute this function with this formula:
=SPREADSHEETNAME()
Thanks in advance.