Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hello to all genius,
I have one date column and sales column, If i select from and to date , the sum of sales between the dates must be shown. How can i done pls let me know..
Create 2 variables for the start and end data ...
vStartdate
vEnddate
then if(date>=vStartdate and date<=vEnddate,Sum(Sales))
or
sum({<date={>='$(vStartdate)'<='$(vEnddate)'}>}Sales)