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've done some quick measures to filter values, but when I check the Measure against the filter it only return the total sum, not per filter or what to say. Is it possible to fix this?
This is the DAX:
I want it to return the value like this (But without 85XX):
Have a nice friday all!
Solved! Go to Solution.
Hi,
Please try something like below if it suits your requirement.
Kost.belopp (aktuellt) for 18, 6, or 1 =
CALCULATE (
SUM ( 'Artikeltransaktion (2)'[Kost.belopp (aktuellt)] ),
FILTER (
'Artikeltransaktion (2)',
'Artikeltransaktion (2)'[Lagerställekod] IN { "18", "6", "1" }
)
)
Awesome! Thanks 🙂
Hi,
Please try something like below if it suits your requirement.
Kost.belopp (aktuellt) for 18, 6, or 1 =
CALCULATE (
SUM ( 'Artikeltransaktion (2)'[Kost.belopp (aktuellt)] ),
FILTER (
'Artikeltransaktion (2)',
'Artikeltransaktion (2)'[Lagerställekod] IN { "18", "6", "1" }
)
)
User | Count |
---|---|
26 | |
12 | |
8 | |
8 | |
5 |
User | Count |
---|---|
28 | |
13 | |
12 | |
12 | |
6 |