Forum Discussion
Filter data monthly
- 9 years ago
Do you want to get the total quote amount for each month? If yes, after create relationship with the calendar table, you should be able to show the result with a Table visual like below.
If you want to get the running total, you can create a measure with following formula.
Running_Total_Month = CALCULATE ( DISTINCTCOUNT ( Table1[Quote No] ), FILTER ( ALL ( Table1 ), MONTH ( Table1[Date Created] ) <= MONTH ( MAX ( Table1[Date Created] ) ) ) )Best Regards,
Herbert - 9 years ago
Just remove the Running_Total meansure from the Table visual should be OK.
Best Regards,
Herbert
Do you want to get the total quote amount for each month? If yes, after create relationship with the calendar table, you should be able to show the result with a Table visual like below.
If you want to get the running total, you can create a measure with following formula.
Running_Total_Month =
CALCULATE (
DISTINCTCOUNT ( Table1[Quote No] ),
FILTER (
ALL ( Table1 ),
MONTH ( Table1[Date Created] ) <= MONTH ( MAX ( Table1[Date Created] ) )
)
)
Best Regards,
Herbert
- jibran9 years agoHelper II
Hi Herbert,
How can I see just the total number of quotes raised each month.
Becuase this solution adds the total number of quotes to the next month and so.
Our aim to show total number of quotes raised per month.
Can you please help on this?Thanks for your help in advance
Many Thanks
Jibran Ishtiaq
- v-haibl-msft9 years agoMicrosoft Employee
Just remove the Running_Total meansure from the Table visual should be OK.
Best Regards,
Herbert