Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hello,
I have in the inline table the fields DATE, STORE, SALES,
also i have created a variable with the current date.
How can i have in a straight chart the sales of the store only
for the current date without selecting from the listbox.
Thank you in advance
Hi,
Try like this,
Created the variable :
vCurrentDate = Date(Today());
=Sum({<Date={'$(=vCurrentDate)'}>}Sales)
Regards,
Hi,
Try like this,
Created the variable :
vCurrentDate = Date(Today());
=Sum({<Date={'$(=vCurrentDate)'}>}Sales)
Regards,
Take STORE as dimension, write expression like:
=Sum(If(Date=Today(), SALES)) // you might have to be careful about the date format.
It works.
Thank you very much.