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

Announcements
See why IDC MarketScape names Qlik a 2025 Leader! Read more
cancel
Showing results for 
Search instead for 
Did you mean: 
leocattqv
Creator
Creator

Calculating Overdue...

Hello,

this is really stumping me.

I want to show based on a calculation of On Time <= <Date> + 30, and Overdue > <Date> + 30

Can I get a bit of direction here please

thanks,

-L

1 Reply
MarcoWedel

LOAD DateToCompare,

          If(DateToCompare <= Date+30, 'On Time', 'Overdue') as [On Time]

FROM yoursource;