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

Announcements
Data Works for AI is here - Join the discussion and enter to win a pair of Qlik kicks: Join the Conversation!
cancel
Showing results for 
Search instead for 
Did you mean: 
ugurarslan
Creator
Creator

All unallocated cash receipt till end of last month

Dear all,

In order to see all unallocated cash (to a customer account) I use the following expression:

Sum({<

[code of cash applied]={'unallocated'},

[date of cash applied]={"<=$(=today())"}

>}[cash applied total USD])

Now I want to see what case was unapplied till end of last month. This in order to see the difference between today and end of last month.

What expression do I need to use for the date of cash applied?

Ugur

2 Replies
bwisealiahmad
Partner - Specialist
Partner - Specialist

Hi,


Can you try this:

[date of cash applied]={"<=$(=today())>=$(=MonthEnd(AddMonths(Today(),-1)))"}

Best,

Ali A

juraj_misina
Partner Ambassador Affiliate
Partner Ambassador Affiliate

Hi,

That'd be

Sum({<

[code of cash applied]={'unallocated'},

[date of cash applied]={"<=$(=MonthEnd(AddMonths(today(), -1)))"}

>}[cash applied total USD])

Hope this helps.

Juraj