The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
Hi,
I'm trying to create a measure (#2) based on another measure (#1).
Measure1 = CALCULATE(sum('DATA'[Amount]),'DATA'[Account]="Revenue")
Measure2 = CALCULATE([Measure1],'DATA'[Category]="CATEGORY1")+ CALCULATE([Measure1],'DATA'[Category]="CATEGORY2")
(Category is a calculated column in DATA that returns a category based on a related field in another table)
Measure2 correctly populates revenue for CATEGORY1 and 2. The problem: for some reason, Measure2 is also populating CATEGORY1 & 2 totals for categories that have no revenue (that aren't CATEGORY1 or 2). Can anyone help me understand why calculate is behaving this way and/or how to fix? Many thanks!!
Solved! Go to Solution.
Hi @jkapso751
please try
Measure2 =
CALCULATE (
[Measure1],
KEEPFILTERS ( 'DATA'[Category] IN { "CATEGORY1", "CATEGORY2" } )
)
Hi @jkapso751
please try
Measure2 =
CALCULATE (
[Measure1],
KEEPFILTERS ( 'DATA'[Category] IN { "CATEGORY1", "CATEGORY2" } )
)
User | Count |
---|---|
10 | |
9 | |
6 | |
6 | |
5 |
User | Count |
---|---|
22 | |
14 | |
14 | |
9 | |
7 |