How to convert date format from DateTime value to "Mon, 06 Jun 2022 11:57:55 GMT"

Hi,

How to convert the date time to Mon, 06 Jun 2022 11:57:55 GMT

please find the below example

EX:

Date1= “2022-06-06T01:10:22”

Date2= “Mon, 06 Jun 2022 11:57:55 GMT”

I need to convert Date1 format to Date2 format.

Please suggest me how to achive this.

Thanks

Avinash

Hi @Avinash Bondada: Please try using FormatDatetime function.

For example: FormatDateTime(<>,“EEE, dd MMM yyyy hh:mm:ss z”,“”,“”).

If your requirement is to just for Visualization in UI, you can configure it in the Presentation tab of the date time control added in Section / View.

Thanks.

@ArulDevan Thank you for your time.