Starting December 3, join live sessions with database experts and the Microsoft product team to learn just how easy it is to get started
Learn moreGet certified in Microsoft Fabric—for free! For a limited time, get a free DP-600 exam voucher to use by the end of 2024. Register now
Hi guys,
I have 4 regions: NA, LA, APAC, EMEA.
I have this main measure:
This main measure works great if I only filter one region. The problem comes when I filter NORTH AMERICA and Any other region (LA for example). When this happens the main measure only use measure2 to make the calculation, this is because of the SELECTEDVALUE (he only works when only one region is selected).
Do you guys know any other function I can use to be able to filter by NORTH AMERICA and LATIN AMERICA with the result = measure1 + measure2?
Thanks
Hi @Anonymous
The first clause should be testing if Regions 'HASONEVALUE', if so check if SELECTEDVALUE eq NA or LA otherwise return what you would like to display in that case.
Did it work ? Mark it as a solution to help spreading knowledge
Was this exchange helpful? A kudos 👍 would be appreciated
What I need is:
Filter = NA:
measure1 = 100$
Filter = LA
measure2 = 200$
Filter = ALL (LA and NA)
measure 1 + 2 = 300$
Here is another way
MyMeasure=
SWITCH(TRUE(),
SELECTEDVALUE(Mytable[Regions])="NA",[Measure1],
SELECTEDVALUE(Mytable[Regions])="LA",[Measure2],
[Measure1]+[Measure2])
Replace MyTable with you table name
Did it work ? 👍 A kudos would be appreciated 📢 Mark it as a solution to help spreading knowledge
Starting December 3, join live sessions with database experts and the Fabric product team to learn just how easy it is to get started.
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early Bird pricing ends December 9th.
User | Count |
---|---|
94 | |
86 | |
82 | |
70 | |
49 |
User | Count |
---|---|
143 | |
125 | |
108 | |
60 | |
55 |