Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi All
I am trying to sum Sales for current month previous month and 2 months ago
I have variables for this and am doing the following
=(Sum({<$(vCurrentMonth) Collections))
=(Sum({<$(vPreviousMonth) Collections))
but this does not work any idea how to do this please?
Thanks alot!
Hi,
Try this way.
Sum({<Month = {"$(vCurrentMonth)"}>}Collections)
Sum({<Month = {"$(vPreviousMonth)"}>}Collections)
Regards,
Kaushik Solanki
Hi,
Try this way.
Sum({<Month = {"$(vCurrentMonth)"}>}Collections)
Sum({<Month = {"$(vPreviousMonth)"}>}Collections)
Regards,
Kaushik Solanki
Maybe like this:
=(Sum({<Month={$(vCurrentMonth),$(vPreviousMonth)}>} Collections))
HI
Try like this
Sum({<Month={$(vCurrentMonth),$(vPreviousMonth), $(v2MonthAgo)}>} Collections)
Thanks All
This has worked !!!
Thanks
Kaushik Solanki