Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
Ramya23
Contributor
Contributor

Date conversion while switching language

I want to convert the format of date from 'MM/DD/YYYY' to 'YYYY/MM/DD'.

For example if the date is in mm/dd/yyyy in English then while switching to German button the date should change to yyyy/mm/dd.

Is this possible in qlik sense? 

Labels (2)
1 Reply
menta
Partner - Creator II
Partner - Creator II

you can create a variable that change based on button

 

vDateFormat= 'MM/DD/YYYY' when click on english button 

vDateFormat= 'YYYY/MM/DD' when click on German button 

Date( <YourFieldDate>,$(vDateFormat))