Describe your use case a bit more. If you have a bunch of rows that you’d like to extract from Airtable into Google Sheets, then it might be easier going the other direction: from Google to Airtable.Google Sheets (all Google products for that matter,...
A challenge with Airtable formulas is that you are somewhat limited in what you can do, particularly since the number of sprints could be quite large - thus any sort of column expansion hacks won’t work. But if you don’t mind trying your hand at some...
For Scripting Automation, here's a solution that works well for me.function getBambooToken(client) {
let tokenizedString = <API_key> + ":x"
return btoa(tokenizedString)
}
function btoa(token) {
var Base64={_keyStr:"ABCDEFGHIJKLMNOPQRSTUVWXYZab...