Join us for an expert-led overview of the tools and concepts you'll need to pass exam PL-300. The first session starts on June 11th. See you there!
Get registeredPower BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. Register now.
Dear experts,
I have the following issue.
I have a slicer with several elements. When 2 specific elements are selected, I want a specific calculation and if they are not, I want another one.
I'm trying:
IF(
SELECTEDVALUE(G_L Entry'[BU]) = "B2B"||
SELECTEDVALUE(G_L Entry'[BU]) = "B2I";
[Revenue] * [ExchRateCurrency];
"" )
Another way that it's not working either:
IF(
OR(
SELECTEDVALUE(G_L Entry'[BU]) = "B2B";
SELECTEDVALUE(G_L Entry'[BU]) = "B2I");
[Revenue] * [ExchRateCurrency];
"" )
Could somebody help, please?
Solved! Go to Solution.
Sorry i was abit to quick there! 🙂
IF(
AND(
FIRSTNONBLANK(G_L Entry'[BU];G_L Entry'[BU]) = "B2B" ||
FIRSTNONBLANK(G_L Entry'[BU];G_L Entry'[BU]) = "B2I" ;
LASTNONBLANK(G_L Entry'[BU];G_L Entry'[BU]) = "B2B" ||
LASTNONBLANK(G_L Entry'[BU];G_L Entry'[BU]) = "B2I" ) ;
[Revenue] * [ExchRateCurrency];
"" )
While there is more than 1 value in G_L Entry [BU] selectedvalue() will always return blank(). That is why your measure is not working. You need to use FIRSTNONBLANK() and LASTNONBLANK() to find the two values.
IF(
AND(
FIRSTNONBLANK(G_L Entry'[BU]) = "B2B" ||
FIRSTNONBLANK(G_L Entry'[BU]) = "B2I" ;
LASTNONBLANK(G_L Entry'[BU]) = "B2B" ||
LASTNONBLANK(G_L Entry'[BU]) = "B2I" ) ;
[Revenue] * [ExchRateCurrency];
"" )
Br,
J
@MartynRamsden I am getting blanks when those are selected.
@tex628 Sounds logical. Thanks.
I think that I'm missing someting. I am getting the error "Too few arguments were passes to the FIRSTNONBLANK function. The minimum argument count for the function is 2."
Sorry i was abit to quick there! 🙂
IF(
AND(
FIRSTNONBLANK(G_L Entry'[BU];G_L Entry'[BU]) = "B2B" ||
FIRSTNONBLANK(G_L Entry'[BU];G_L Entry'[BU]) = "B2I" ;
LASTNONBLANK(G_L Entry'[BU];G_L Entry'[BU]) = "B2B" ||
LASTNONBLANK(G_L Entry'[BU];G_L Entry'[BU]) = "B2I" ) ;
[Revenue] * [ExchRateCurrency];
"" )
What if you want to do the same thing for 3 values ?
FIRSTNONBLANK and LASTNONBLANK would not be enough.
Do you know how I could proceed ?
Cheers,
@tex628 Perfect. It works. Thank you so much!
@MartynRamsden Thanks a lot for your help too.
Hi @setis
Both expressions look ok to me. What result are you seeing?
Have you tried IN?
Measure =
IF(
SELECTEDVALUE( G_L Entry'[BU] ) IN { "B2B", "B2I" };
[Revenue] * [ExchRateCurrency];
""
)
Best regards,
Martyn
If I answered your question, please help others by accepting it as a solution.
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.
User | Count |
---|---|
84 | |
75 | |
68 | |
41 | |
35 |
User | Count |
---|---|
102 | |
56 | |
52 | |
46 | |
40 |