Hi!
I'm trying to take the date values from column A in a Table component, then add (X - 1) months to them based on column B in the same Table, then show these new calculated dates in column C in the same table.
Here's the formula I tried:
DATE_ADD(DATE(!ColumnA, "yyyy-MM-dd"), month, !ColumnB - 1)
The results are all based on Column B of the first row only.
Example of actual results:
A B C
2024-02-01 2 2024-03-01
2024-03-15 5 2024-04-15
Example of desired results:
A B C
2024-02-01 2 2024-03-01
2024-03-15 5 2024-07-15
Any help would be highly appreciated!
Thanks :)