I have a date that i have used formatter to format in the way i need it.
I want to use Zapier to pull this date to then generate the final day of the month. Any formula i have tried is not supported in Zapier. Does anyone have a good solution for this?
Replacing A1 with my formatted date.
I have tried:
- =DATE(YEAR(A1),MONTH(A1)+1,0)
- =DATE(VALUE(TEXT(A1,"yyyy")),VALUE(TEXT(A1,"mm"))+1,0)
- =DATE(INT(A1),INT((A1-INT(A1))*12)+1,0)
- =DATE(INT(YEAR(A1)), INT(MONTH(A1)) + 1, 0
- =DATE(VALUE(LEFT(A1,4)),VALUE(MID(A1,6,2))+1,0)
- =DATE(INT(A1), MONTH(A1) + 1, 0)
- =DATE(VALUE(TRIM(LEFT(A1,4))), VALUE(TRIM(MID(A1,6,2))) + 1, 0)
- =EOMONTH(A1,0)
Any formula i try comes up with an error message, not supported.