Skip to main content
Announcements
See what Drew Clarke has to say about the Qlik Talend Cloud launch! READ THE BLOG
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))