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.
Hello, any help would be greatly apprecaited, this should help create other measures.
Here is the sample data:
I need to be able to sum based on the following creteria.
Solved! Go to Solution.
@Alxnder Try:
Measure =
SUMX(
FILTER( 'Table', [Variety] = "Navel" && [Grade] = "Fancy" && [Export Market] = "Domestic" && [age] > 10 ),
[Qty]
)
@Alxnder Try:
Measure =
SUMX(
FILTER( 'Table', [Variety] = "Navel" && [Grade] = "Fancy" && [Export Market] = "Domestic" && [age] > 10 ),
[Qty]
)
Qty 10 is the desired outcome.
User | Count |
---|---|
27 | |
12 | |
8 | |
8 | |
5 |
User | Count |
---|---|
31 | |
15 | |
12 | |
8 | |
7 |