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.
Hello everyone,
Now this is a strange one: I obtain a date object from an entry by a user, then I use that date to fill in a cell in a new record…
output.text(HandoverDate is ${handOverDate});
let table2 = base.getTable(“Timeline”);
let recordIds = ...
Hello everyone,
I am creating a script that will ask the user for a project name and a hand-over date, and then the script will generate a number of records with subsequent dates (to create a Gantt chart, essentially). I want this done through the sc...
I found the solution. In short, there isn’t a direct function to do this in javascript. Instead:
I obtain the date from a button input (nice little bit of code I re-used),then I have to separate the components of that date into numbers,and recompose ...