The Community will be temporarily unavailable starting on Friday February 28. We’ll be back as soon as we can! To learn more, check out our Announcements blog post.
Hi all.
With my custom CSV importer script, I’d like to do a few operations before the .parsedContents method should look at the file. Examples:
My file uses a comma for decimal notation. .parsedContents simply removes them, so 4,5 becomes 45 but it ...
Hi all,
I’m diving into the wonderful world of Airtable scripting with a custom CSV import script that does some data interpretation and creates links to other tables. Starting point was the CSV import example.
I managed to get that working and added...
I tried the suggestion by Justin.
The compiler does not like the await format_date() inside map():
SyntaxError: Unexpected identifier 'format_date'. Expected '}' to end an object literal.
If I remove await there but keep the
async function format_dat...
The error happens before anything is displayed in the output window. So it means the error is actually triggered on or before line 2 of my script, as line 2 would output a string to the window.
In my mind, that rules out any other part of my code, ri...