Here is the problem, i need to read the note from a external spreadsheet, so recently i search and found this anwser: Get cell note value but it isn't working with external spreadsheets, i tried a lot of things, but nothing worked, somebody can help me?
Sheet A - Example
Sheet B - Getting value (ImportRange) - Request
Sheet B - Getting value (ImportRange) - Return
Sheet B - Getting Notes(Custom Script) - Request FAIL
function getNote2(cell, token)
{
var ss = SpreadsheetApp.openById(token)
var range = ss.getRange(cell)
return range.getNote();
}