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

variable

Hi Friends,

I want to crate variable from the following syntax

LET vMonth=num#(Date(Makedate(2019,11,30),'YYYYMM'));

my expected result is   201911

But it does not work as expected. Pls help me to correct it

 

1 Solution

Accepted Solutions
DavidM
Partner - Creator II
Partner - Creator II

Why do you need num#?

LET vMonth=Date(Makedate(2019,11,30),'YYYYMM');

Also you don't need the day if you're creating only year and month Makedate(2019,11) is enough

View solution in original post

1 Reply
DavidM
Partner - Creator II
Partner - Creator II

Why do you need num#?

LET vMonth=Date(Makedate(2019,11,30),'YYYYMM');

Also you don't need the day if you're creating only year and month Makedate(2019,11) is enough