Microsoft Fabric Community Conference 2025, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount.
Register nowThe Power BI DataViz World Championships are on! With four chances to enter, you could win a spot in the LIVE Grand Finale in Las Vegas. Show off your skills.
I am working on a report in Power BI where I have 4 filters to sort the data, and for the report to function properly, the revenue formula needs to ignore the last filter (indicator) so that I can make a comparison. I have tried
Profit = CALCULATE ( [Caravan] + [PKW] + betrag[sleistung] + betrag[smaterial] + betrag[sumsatz], ALL ( table[indicator] ) )
But it is not working. Any idea what could be the problem?
Solved! Go to Solution.
Hi @wl2020
try SUMX(), like
Profit =
CALCULATE (
SUMX(table,([Caravan] + [PKW] + betrag[sleistung] + betrag[smaterial] + betrag[sumsatz])),
ALL ( table[indicator] )
)
User | Count |
---|---|
21 | |
20 | |
14 | |
10 | |
8 |
User | Count |
---|---|
30 | |
28 | |
13 | |
12 | |
11 |