I’m using the scripting app to send data via API request to another application. It’s currently functioning, and the other application is able to take the data and perform as required.
However, I’m having trouble getting a response from the API reque...
Has anyone tried changing their email for this community forum? There’s a note next to my email on the account page that says “Email can be updated from SSO provider.” Not sure who the ‘single-sign-on providor’ is for this site. But I do know that th...
Doing some simple substring removal and getting different results from the block than in JS Bin.
let renderName = "MX_Topo-Chico-Agua_Mineral-Water_600ml_PET_6x";
let secondaryQuantity = "6x";
// scripting block generates an UNEXPECTED output: "MXTo...
Someone else asked about adding carriage returns to formulas (it’s done like this “\n”). I’m trying to find a similar command for tab or indentation characters.
That way I can generate text formatted like this:
Product: Orange
Quantity o...
TLDR use the scripting block instead of formulas
Why this is happening
So as you might expect, the = evaluation compares two things and determines if they’re equal. It doesn’t do much more than that. I’m not sure if Airtable is evaluating them as str...
Hmm - I tried the same (using a number of text editors, including apple notes), but I think I’m just getting four spaces? When I drag my cursor over them that’s what it appears to be anyway.
Would expect the image below to have the right two words a...
Here’s a partial solution to get you started. The easy part is getting the current month number:
MONTH( Today() )
You can use that month number to construct other dates via DATESTR(). Here’s the first day of this month:
DATESTR( YEAR(Today()) & "-" &...