Skip to main content
Announcements
Introducing Qlik Answers: A plug-and-play, Generative AI powered RAG solution. READ ALL ABOUT IT!
cancel
Showing results for 
Search instead for 
Did you mean: 
Krish2459_58
Creator
Creator

Dtae format

Hi ,

 

How to change the below date to standard date format as dd/mm/yyyy

2024-12-31T08:00:00Z

 

Thanks,

K

Labels (1)
1 Solution

Accepted Solutions
Vegar
MVP
MVP

I would try something like this

dayname(timestamp#(DateField,'YYYY-MM-DDThh:mm:ssZ'))

View solution in original post

2 Replies
Chanty4u
MVP
MVP

Try this 

        Date#(Left(YourDateField, 10), 'YYYY-MM-DD') as YourDateField

   

   

Vegar
MVP
MVP

I would try something like this

dayname(timestamp#(DateField,'YYYY-MM-DDThh:mm:ssZ'))