Get the Day of the Week from a Date in Zoho Creator

Get the Day of the Week from a Date in Zoho Creator

If you need to get the day of the week from a specific date, you can use the text function toString("EEEE").

For instance, let's say you have field in a form named "Shipping_Date". The value in it is "01.01.2021" (1 January 2021).
The function input.Shipping_Date.toString("EEEE") will return the string "Friday".

    • Related Articles

    • Trigger Zoho CRM Workflows on Record Creation with Deluge

      When creating a record in Zoho CRM using a Deluge function, the workflows are not triggered by default. If you want to trigger them, there is a parameter that should be added: wfTrigger=true. Here is an example: mapContact = Map(); ...
    • Compare New and Old Values in Zoho Creator Form

      When a user edits a record in a form of a Zoho Creator application, we sometimes need to compare the new values entered by the user with the old values that were existing before the user made changes. Using this comparison, we can adapt the behaviour ...