Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hello All,
I want Value of ageing buckets in a text box, My expression is
=IF(Today() - [Due Date] < 0, Sum(Value))
The problem here is due date is different for every invoice number and therefore qlikview cannot calculate this in a text box.
Need help Guys.
=SUM(IF(Today() - [Due Date] < 0, Value))
You have given the answer ... to use that expression you have to fix due date for example with a max([DUe Date])
But that will not be logical, Every invoice number would have a different Due Date and according to that due date it needs to fall into a bucket, If I take Max of Due Date, everything would eventually fall into one bucket only.
=SUM(IF(Today() - [Due Date] < 0, Value))
You're right and that's the reason for which it is not possible to use a text box to display only one information related to more lines ... you can use the text box if you want the info of a selected line
Hi,
Use Aggr() to calculate by Invoice level
=Sum(Aggr(IF(Today() - [Due Date] < 0, Sum(Value)), Invoice))
Replace Invoice with your actual Invoice field name.
Hope this helps you.
Regards,
jagan.
Thanx Manish