Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
AWS Degraded - You may experience Community slowness, timeouts, or trouble accessing: LATEST HERE
cancel
Showing results for 
Search instead for 
Did you mean: 
qvhjenvo
Contributor
Contributor

Dateformat in dimension

Hi,

I have a statusdate as dimension. Values for the statusdate for ex.

statusdate

20130228

20130430

20130531

What I want is, for ex.


statusdate      formatedStatusdate

20130228      28.02.2013

20130430     30.04.2013

20130531     31.05.2013

Some hints?

2 Replies
maxgro
MVP
MVP

date(date#('20130228', 'YYYYMMDD'), 'DD.MM.YYYY')

replace 20130228 with statusdate

date(date#(statusdate, 'YYYYMMDD'), 'DD.MM.YYYY')

MK_QSL
MVP
MVP

Use below in your script for statusdate

Date(Date#(statusdate,'YYYYMMDD'),'DD.MM.YYYY') as statusdate