Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi friends,
I want
Comparison between current week day and previous week day.
Means if i select current monday then i want current mondays data with respective previous monday.
how can calculate it.
Regards,
Vishal
Suppose you have a field MyDate that contains a date and Sales that contains sales amounts. If you select a date then sum(Sales) will return the sum of the sales for that day. Then sum({<Mydate={'$(=only(MyDate)-7)'}>}Sales) will return the sales of a week (7 days) earlier.
Suppose you have a field MyDate that contains a date and Sales that contains sales amounts. If you select a date then sum(Sales) will return the sum of the sales for that day. Then sum({<Mydate={'$(=only(MyDate)-7)'}>}Sales) will return the sales of a week (7 days) earlier.
Thanks Gysbert