How to get the current spreadsheet's URL using formula ?
So far the only way i found to do this is by using function like this :
function getSheetUrl() { var SS = SpreadsheetApp.getActiveSpreadsheet(); var ss = SS.getActiveSheet(); var url = ''; url += SS.getUrl(); url += '#gid='; url += ss.getSheetId(); return url;}is there any built-in formula to do this without go to script/function ?