Skip to main content
Announcements
Have questions about Qlik Connect? Join us live on April 10th, at 11 AM ET: SIGN UP NOW
cancel
Showing results for 
Search instead for 
Did you mean: 
mosha231
Contributor II
Contributor II

concatenate two outputs

can anyone tell how i can join two outputs.

example year(today())  gives me 2017 and week(today()) gives me 48. i want output to be 201748

Thanks In advance

1 Solution

Accepted Solutions
antoniotiman
Master III
Master III

year(today())&Num(week(today()),'00')

View solution in original post

2 Replies
antoniotiman
Master III
Master III

year(today())&Num(week(today()),'00')

marcus_sommer

If you need a numeric output you need a calculation instead of a string-concat, maybe like:

year(today()) * 100 + week(today())

- Marcus