Hello Gliders. I’m watching this great video on multiple row adding with API: Glide Tutorial - Add, Edit or Delete Multiple Rows (Glide API)https://youtu.be/b7_k3_brusQ?si=Q1m6cNPjbMURdCTR. Clear enough (for now) and I intend to do this.
But the rows I’m adding will have a date column. The first row can be today, and each row after should be +1 month. How to do?
Thanks for this. I ended up using the API method to bulk add rows, and included an index number in the bulk-add as well as a date added, then in the destination table it was easy to use math column to add a month based on the index number. It’s not flexible (i.e. can only add set number of rows) but it is contained within glide at least and for my purpose users can easily delete rows in the data table collection so having extra from the bulk add is ok
Hmm maybe not. Just noticed I’m stuck in the problem of adding days to get to the next month and Feb being too short. Here’s where I am:
API template adds with start date (could be any month / year), also adds index 1-48 (total number rows)
Destination then finds first day of month and then Math (firstdayofmonthcolumn+(30*index)
Of course this skips Feb
It would seem easier in my case to find the last day of the month and add 1 day. Is this possible? @Darren_Murphy I noticed your formula below, is there a way to adjust this so that I can use the index number to add x number of months?