Hi,
I’m building an app to record my daily sales summary, so I created a table “Daily Sales” with columns
- Date
- Daily Cash
- Daily Card
- Expenses
Here, I want to see the both total of Cash and Total of Cards for any particular dates.
My tries:
- I tried adding a dummy column with common value and put it in group by and added “Daily cash” Group aggregate in the views,
But this helped me to show only total of one column i.e., Daily Cash. - Tried adding virtual column with query “=SUM(Select(Daily Sales[daily cards],True))” and thought of showing it in each rows. It showed the sum but not filtering, for ex: if there are data for one month but when i select date filter for last one week, it shows total of one month only.
- Thought of trying with Slices, but since my date condition filterings are dynamic, i’m clueless what to enter on the condition for slices.
Please refer the below images.
I hope you understand.
Any help will be highly appreciable.
Thanks.
Syed

