The Community will be undergoing maintenance from Friday February 21 - Friday, February 29 and will be "read only" during this time. To learn more, check out our Announcements blog post.
I’m working with an API that returns a JSON object from the the function below:
await remoteFetchAsync(url, getLabelOptions)
.then((resp) => resp.json())
.then(function(data) {
pdfstring = data.label;
})
.then()
.catch(funct...
I have a code that looks like this:
await createPackage(oderSummary);
async function createPackage(oderSummary) {
let pickPosition = true;
let lineItemsArr = [];
const r = Object.keys(oderSummary[0]).map((v) => ({
[v]: oderSummary.map((c) =...
I have a table structured liked this:
The second column returns the “Click” count for some job postings.
Knowing their record IDs (returned in the “lookup” column) how can I somehow mark the first two corresponding records in the other table without...
Hi all,
Had a bit of inspiration from this cool script shared by @Jeremy_Oglesby.
My goal was to have an easy solution to categorize the transactions imported from all of my accounts/financial institutions.
Here’s the scenario:
There will be some fre...
Hi all,
Is there a way I could pass markdown - result of script run to automations?
Like in the example here
where the output table could be send in an email?
Ah there was a mistake in the date format."Kan laves d." :DATETIME_FORMAT(DATEADD({Tilføjet d.}, IF(WEEKDAY({Tilføjet d.})<=3, 3-WEEKDAY({Tilføjet d.}), 10-WEEKDAY({Tilføjet d.})), 'days'), 'DD/MM/YYYY') formula field:IF({Following WED Date},IF(DATE...
I think your original formula (stored on "Kan laves d.") might have an error. Can you try the one below and report back? DATETIME_FORMAT(DATEADD({Tilføjet d.}, IF(WEEKDAY({Tilføjet d.})<=3, 3-WEEKDAY({Tilføjet d.}), 10-WEEKDAY({Tilføjet d.})), 'days'...
I think this should do the trick:IF({Kan laves d.},IF(DATETIME_FORMAT(DATEADD(TODAY(), IF(WEEKDAY(TODAY())<=3, 3-WEEKDAY(TODAY()), 10-WEEKDAY(TODAY())), 'days'), 'DD/MM/YYYY')={Kan laves d.},"",""),"")
Hey Greetje, you can integrate Toggl with Airtable using Toggl API.That way you could create time entries via Toggl's native mobile apps and keep your reporting in Airtable.If you're looking for someone to build this please let me know!
Hey @Ngo_Hoang_Tuan,
you can’t use an object in the body field. You need to use JSON.stringify()
Here’s the updated script:
let body = {
"name": "Tenali Ramakrishna",
"gender": "male",
"email": "tenali.ramakrishna2@15ce.com",...