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

Announcements
Join us to spark ideas for how to put the latest capabilities into action. Register here!
cancel
Showing results for 
Search instead for 
Did you mean: 
abTech
Contributor III
Contributor III

Table- year days

I have those two tables already loaded, I need to calculate the "number of days " in 2023 for each match and the number of days in 2024 also for each match in a table chart, note that there is matches start in 2023 and end in 2024.

Attendees ID Table tAttendees ID Table t

 

Attendees TableAttendees Table

Labels (4)
1 Reply
madelonjansen
Partner Ambassador
Partner Ambassador

You could create a record for every 'Match Day', with the actual date. 

Then it is the year of that date, versus the number of date records.

 

Try this:

Load *,
    Year(Match_Date)                        as Match_Year
;
Load *,
    Date(Start_Date + Iterno()-1)       as Match_Date
Resident Match_Table
While Date(Start_Date + Iterno()-1) <= End_Date;