Forum Discussion
mussaenda
5 years agoCommunity Champion
Measure filter on Card Visual
Hi,
I have this small issue that I cannot solve.
I tried reading but unable to achieve what I need to do.
I have this measure
CALCULATE(
[Total Caric...
- 4 years ago
The solution from this forum solved my issue.
https://community.powerbi.com/t5/Desktop/Filter-a-Measure-with-another-Measure/td-p/1380905
v-xulin-mstf
5 years agoCommunity Support
Hi mussaenda,
Try measure as:
AVG=
AVERAGEX(
FILTER(
ALL('Date Table'),
'Date Table'[Date] <= MAX('Date Table'[Date])
),
CALCULATE(
[average],
filter(
table,
measure=0
)
)
If you still have some question, please don't hesitate to let me known.
Best Regards,
Link
Is that the answer you're looking for? If this post helps, then please consider Accept it as the solution. Really appreciate!
mussaenda
5 years agoCommunity Champion
- v-xulin-mstf4 years agoCommunity Support
Hi mussaenda,
It is the column in the table that need to be averaged.
If you still have some question, please don't hesitate to let me known.
Best Regards,
Link
Is that the answer you're looking for? If this post helps, then please consider Accept it as the solution. Really appreciate!
- mussaenda4 years agoCommunity Champion
it requires an aggregation for [average]