The storecount should be 1200. however when I remove the date, the storecount it gives me a distinct count of stores across all business dates (1220 in this case). How do I go about it. I have tried sum(count([store]) foreach ([date]). Tried other variations too.
Hi chirkutbhai,
Please try using alerters for hiding the column date.
You can overwrite StoreCount on date column with the use of alerter,which will not remove the date and offcourse will not change the count
I just want to use the sum formula elsewhere in my report to do some calculations. I dont want to display it anywhere, Hence hiding the date column will not help.
Make sure the store count object is a measure and has Sum() around it and also that the aggregation type is Sum.
If your store count is a dimension, then make sure that you do not retrieve duplicate rows.
I need to check if the storecount for every business date meets a threshold else I need to display a message even if business date has low store count. I just need to display the message. I dont want to display the dates or the storecounts…
So for eg: If I have the following data and my threshold is 1200.
Date Storecount
1/1/2011 1300
1/2/2011 1100
1/3/2011 1400
1/4/2011 1200
In this case I will display a message since Storecount is below the threshold for 1/2/2011. As mentioned , I dont want to display the above data though… just flash the message.