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.
Hi All,
I have existing calculalted column code as below:
Solved! Go to Solution.
Hi @sdhn
Try this:
Graphs =
SWITCH (
TRUE (),
[Vulnerable (Yes/No/Not Assessed)] = "NOT ASSESSED", "NOT ASSESSED",
[Vulnerable (Yes/No/Not Assessed)] = "YES"
|| [Vulnerable (Yes/No/Not Assessed)] = "NO", "ASSESSED"
)
or
Graphs =
IF (
[Vulnerable (Yes/No/Not Assessed)] = "NOT ASSESSED",
"NOT ASSESSED",
"ASSESSED"
)
If this post helps, please consider accepting it as the solution to help the other members find it more quickly.
Appreciate your Kudos!!
LinkedIn: www.linkedin.com/in/vahid-dm/
Thanks
Hi @sdhn
Try this:
Graphs =
SWITCH (
TRUE (),
[Vulnerable (Yes/No/Not Assessed)] = "NOT ASSESSED", "NOT ASSESSED",
[Vulnerable (Yes/No/Not Assessed)] = "YES"
|| [Vulnerable (Yes/No/Not Assessed)] = "NO", "ASSESSED"
)
or
Graphs =
IF (
[Vulnerable (Yes/No/Not Assessed)] = "NOT ASSESSED",
"NOT ASSESSED",
"ASSESSED"
)
If this post helps, please consider accepting it as the solution to help the other members find it more quickly.
Appreciate your Kudos!!
LinkedIn: www.linkedin.com/in/vahid-dm/
User | Count |
---|---|
25 | |
12 | |
8 | |
6 | |
6 |
User | Count |
---|---|
26 | |
12 | |
11 | |
8 | |
7 |