Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
Solved! Go to Solution.
Hi @ruthgammack
Try this:
Buffer Kms =
IF (
'Co-ordinate'[Kms] = 0,
20,
SWITCH (
TRUE (),
( 'Co-ordinate'[Mode] = "Air" ),
'Co-ordinate'[Kms] / 100 * 22,
( 'Co-ordinate'[Mode] = "Sea" ),
'Co-ordinate'[Kms] / 100 * 24,
( 'Co-ordinate'[Mode] = "Roa" ),
'Co-ordinate'[Kms] / 100 * 18,
( 'Co-ordinate'[Mode] = "Rai" ),
'Co-ordinate'[Kms] / 100 * 9,
( 'Co-ordinate'[Mode] = "Cou" ),
'Co-ordinate'[Kms] / 100 * 22
)
)
If this post helps, please consider accepting it as the solution to help the other members find it more quickly.
Appreciate your Kudos✌️!!
I have refering url column under which urls listed like below
google.com
facebook.com
instagram.com
linkedin.com
i want ad need column which lists respective urls
how can i do
Hi @ruthgammack
Try this:
Buffer Kms =
IF (
'Co-ordinate'[Kms] = 0,
20,
SWITCH (
TRUE (),
( 'Co-ordinate'[Mode] = "Air" ),
'Co-ordinate'[Kms] / 100 * 22,
( 'Co-ordinate'[Mode] = "Sea" ),
'Co-ordinate'[Kms] / 100 * 24,
( 'Co-ordinate'[Mode] = "Roa" ),
'Co-ordinate'[Kms] / 100 * 18,
( 'Co-ordinate'[Mode] = "Rai" ),
'Co-ordinate'[Kms] / 100 * 9,
( 'Co-ordinate'[Mode] = "Cou" ),
'Co-ordinate'[Kms] / 100 * 22
)
)
If this post helps, please consider accepting it as the solution to help the other members find it more quickly.
Appreciate your Kudos✌️!!
unfortunately it doesnt work. ill keep trying
The last condition must be the first. It really does matter what you put where in switch.
Check out the July 2025 Power BI update to learn about new features.
User | Count |
---|---|
22 | |
7 | |
6 | |
6 | |
6 |
User | Count |
---|---|
27 | |
12 | |
10 | |
9 | |
6 |