Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Dear All,
I have stored the Month filed in variable, then i used this variable set analysis. While selected the month from the list box chart will be reflected for selected month. It is working fine.
Now i want to show previous month sales details for the selected month from the list box.
used varaible:
set varaible=GetFieldSelections(Month)
Expression for selected month:
=sum({<Month={'$(vMonth)'}>}sales )&' $(vMonth)'
Can you please help me how can i achieve this requirement.
Check this
=sum({<Month={"$(vMonth)"}>} sales )&' $(vMonth)'
vMonth is not the variable where you select the =GetFieldSelections(Month) it is varaible so use this in expression.
=sum({<Month={"$(varaible)"}>} sales )&' $(varaible)'
Hi Anand,
=sum({<Month={"$(vMonth)"}>} sales )&' $(vMonth)'
above expression is working fine. I want see show the previous month sales details for selected month.
Thanks
Hareesh.
in varable place i used vMonth.
Thanks