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.
Trying to create a calculated column to show the expected/probable revenue impact from a pipeline.
This means the column should do a function as:
If Probability = "10% - StageA" then 0.1*"Estimated revenue",
If Probability = "30% - StageB" then 0.3*"Estimated revenue",
If Probability = "95% - StageC" then 0.95*"Estimated revenue",
How do I do that?
Solved! Go to Solution.
@MrKwanorama ,
Is this your expectation?
Probable revenue =
SWITCH(
TRUE(),
'Tablename'[Probability] = "10% - StageA", 0.1*'Tablename'[Estimated revenue],
'Tablename'[Probability] = "30% - StageB", 0.3*'Tablename'[Estimated revenue],
'Tablename'[Probability] = "95% - StageC", 0.95*'Tablename'[Estimated revenue],
BLANK()
)
Thanks,
@MrKwanorama ,
Is this your expectation?
Probable revenue =
SWITCH(
TRUE(),
'Tablename'[Probability] = "10% - StageA", 0.1*'Tablename'[Estimated revenue],
'Tablename'[Probability] = "30% - StageB", 0.3*'Tablename'[Estimated revenue],
'Tablename'[Probability] = "95% - StageC", 0.95*'Tablename'[Estimated revenue],
BLANK()
)
Thanks,
Hi sorry - accepted too soon.
Gives me:
Function 'SWITCH' does not support comparing values of type True/False with values of type number.
I have the Estimated Revenue as Decimal Number and Probability as Text.
Any suggestion?
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 |
---|---|
81 | |
75 | |
60 | |
37 | |
33 |
User | Count |
---|---|
102 | |
56 | |
52 | |
46 | |
40 |