Date format display

Hello community
How do i change the date format display form yyy-mm-dd as show below to dd-mm-yyy?
Screenshot from 2022-08-02 11-57-57

Hi @cliff

Take a look at the format-date() XPath function: https://docs.getodk.org/form-operators-functions/#format-date

For your specific use case try this:
calculation = format-date(${my_date}, "%d-%m-%Y")

1 Like

thanks @Ronald_Munjoma

1 Like