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

Announcements
AWS Degraded - You may experience Community slowness, timeouts, or trouble accessing: LATEST HERE
cancel
Showing results for 
Search instead for 
Did you mean: 
aaronnayan
Creator III
Creator III

help with expression

Can someone help me with this

I want to find the sales of desk_table for the current month in qlik

=Money(sum(Month(Today())[desk_table]))

1 Solution

Accepted Solutions
sunny_talwar

I think you forgot the dollar sign expansion.

Money(sum({<Month={"$(=Month(Today()))"}>}[desk_table]))


and may be you need year as well

Money(sum({<Month={"$(=Month(Today()))"}, Year = {"$(=Year(Today()))"}>}[desk_table]))

View solution in original post

3 Replies
ahaahaaha
Partner - Master
Partner - Master

Hi

Try

Money(sum({<Month={"=Month(Today())"}>}[desk_table]))

aaronnayan
Creator III
Creator III
Author

sorry andrey thats totalling all the months

if it helps i have made a variable for the current month vCurrent_Month

sunny_talwar

I think you forgot the dollar sign expansion.

Money(sum({<Month={"$(=Month(Today()))"}>}[desk_table]))


and may be you need year as well

Money(sum({<Month={"$(=Month(Today()))"}, Year = {"$(=Year(Today()))"}>}[desk_table]))