Forum Discussion
Anonymous
8 years agoNot applicable
DAX Queries
In my Power BI Report I'm having, Month Value August 1,24,000 September 2,46,789 October 8,49,000 November 2,04,985 December 90,485 Now, I want to display the value ...
- 8 years ago
Anonymous
You can create a calculated table like below:
Table = FILTER(ALL(Table1[Month]),CALCULATE(SUM(Table1[Value]))>800000)
Regards,
v-sihou-msft
Microsoft Employee
8 years agoAnonymous
You can create a calculated table like below:
Table = FILTER(ALL(Table1[Month]),CALCULATE(SUM(Table1[Value]))>800000)
Regards,