Is there a simple way to convert a month from a number (1 - 12) I got with this code: "value": { "left": { "context": "date" }, "right": { "value": "MM" }, "transform": "formatDate" } to a string (example: "January", "February", ...)?
"value": { "left": { "context": "date" }, "right": { "value": "MM" }, "transform": "formatDate" }
Hello, If you use the context date you should be able to use MMMM in your date format. Be careful as this value might change depending on the users locale. E.g. if your device is set to English it might return "January" but if the device is set to German it might return "Januar."
MMMM
Best regards.