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

Announcements
Want to see what's currently in public preview? We've pulled it all together in one place. Check it out here
cancel
Showing results for 
Search instead for 
Did you mean: 
Carlaf_93
Creator II
Creator II

CREATE DATE DIMENSION

Good morning,

i have a table with some dimensions.

I have a year field and a month one (with numbers like: 1,2,3,4..)

i would like to create a date dimension in this format

'01-02-2018' with always day like 01 and month in this format.

What can i do?

LOAD

YEAR,

MONTH

FROM...

 

1 Reply
joaopaulo_delco
Partner - Creator III
Partner - Creator III

Hi @Carlaf_93 !

     You can use the MakeDate function like below:

MakeDate(YEAR, MONTH) 

or formating using

Date(MakeDate(Ano, Mes),'DD-MM-YYYY')

 

Help users find answers! Don't forget to mark a solution that worked for you!