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

Integer numeric colums, fuse to date

I have the following column, which have the datatype $numerci $integer. One column stands for the calendar week and the other for the year.The Date should always be the first day in this calender week. 

 

Week Year Date
6 2022 07.02.2022
7 2022 14.02.2022

 

How would one solve this in the data load editor ?

Labels (3)
1 Solution

Accepted Solutions
Or
MVP
MVP

What exactly is the issue you're trying to solve?

If you're trying to create the Date column from the Week and Year columns, try:

MakeWeekDate(Year, Week) as Date

 

View solution in original post

2 Replies
Or
MVP
MVP

What exactly is the issue you're trying to solve?

If you're trying to create the Date column from the Week and Year columns, try:

MakeWeekDate(Year, Week) as Date

 

Loeckli
Contributor III
Contributor III
Author

Thanks that was exactly the solution I was looking for!!