Skip to main content
Announcements
Live today at 11 AM ET. Get your questions about Qlik Connect answered, or just listen in. SIGN UP NOW
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

How to convert a week number to a weeknumber

Hi,

I have a xls file that contain a weeknumber e.g. 32 but when I load the data it is presented as 1, 2, 3.... upto 8.

So I assume that I need to convert the week to a weeknumber, what I have done is:

 

Week(Week of expected work) as WeekExpectedTask,

If I dont use anything it will change the week to a data in 1900.....

So none of the solutions work, what is wrong with this and why?

Thanks in advance,

Peter

1 Solution

Accepted Solutions
rubenmarin

Hi Peter, you can use MakeWeekDate(YearNumber,WeekNumber)

=MakeWeekDate(Year(Today()), 32)

This will return a Date with the start day of the week.

View solution in original post

3 Replies
sasiparupudi1
Master III
Master III

please post a sample application

rubenmarin

Hi Peter, you can use MakeWeekDate(YearNumber,WeekNumber)

=MakeWeekDate(Year(Today()), 32)

This will return a Date with the start day of the week.

Anonymous
Not applicable
Author

Thanks this solved my problem