What is your goal?
To parse a date received from Tally (in YYYY-MM-DD format), convert it to DD/MM/YYYY, and store it correctly in a Make Datastore without any changes or misinterpretation.
What is the problem & what have you tried?
Make keeps swapping the day and month whenever the day is ≤ 12 (e.g., 2025-04-03 becomes 04/03/2025).
I used:
{{formatDate(parseDate(2.fieldsById.someField; “YYYY-MM-DD”); “DD/MM/YYYY”)}}
It appears that Make reinterprets the date as MM/DD despite the explicit parse mask.
Error messages or input/output bundles
No error messages. The Datastore entry simply stores the wrong date (day/month swapped), and any calculated dates based on it become incorrect as well.

