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: 
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;