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.
I have two column one Column confirmation and another column Timing
Confirmation column have below three values
1.Confirmation
2.Not Confirmed
3.Pending
Confirmation as consider No Risk
Not Confirmed as Consider Risk
Pending as consider No Risk
Timing column have a following the values .
Overdue Purchase Requisition consider as Risk
Standard Overdue consider as Risk
Urgent Overdue consider as Risk
Urgent consider as Risk
Lack consider as Risk
No Timing Risk Consider as Risk
Now i want to create new calculated column name called RISK. this column would be a logical result of previous two columns.
i have assign two values for the following conditions
i have created condition its not working . any support . looking for support.
Solved! Go to Solution.
@Anonymous , Create a new column like
new column =
Var _1 =
Switch([Confirmation],
"Confirmation","No Risk",
"Not Confirmed","Consider Risk",
"Pending","No Risk",
"No Risk")
Var _2 =
Switch( true(),
[Timing] in {"Overdue Purchase Requisition","Standard Overdue","Urgent Overdue","Urgent","Lack","No Timing Risk"}, "Risk",
"No Risk"
)
return
if(_1 ="Nor Risk" && _2 = "No Risk", "No Risk", "Risk")
@amitchandak sir its showing all the values as Risk and there No Risk value also there. No Timing Risk is a consider as a No Risk and . if this value match with confirmation column Pending ,confirmation . its should return No Risk
Hi,
Try something like this: IF(OR(Table[Confirmation] in {"Confirmation", "Not Confirmed"},Table[Timing] <> "No Timing Risk"),"Risk","No Risk")
I hope this post helps to solve your issue and if it does consider accepting it as a solution and giving the post a thumbs up!
My LinkedIn: https://www.linkedin.com/in/n%C3%A4ttiahov-00001/
Proud to be a Super User!
Please,
can you share an exemple of teh file?
@Anonymous , Create a new column like
new column =
Var _1 =
Switch([Confirmation],
"Confirmation","No Risk",
"Not Confirmed","Consider Risk",
"Pending","No Risk",
"No Risk")
Var _2 =
Switch( true(),
[Timing] in {"Overdue Purchase Requisition","Standard Overdue","Urgent Overdue","Urgent","Lack","No Timing Risk"}, "Risk",
"No Risk"
)
return
if(_1 ="Nor Risk" && _2 = "No Risk", "No Risk", "Risk")
Check out the July 2025 Power BI update to learn about new features.
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
User | Count |
---|---|
19 | |
7 | |
6 | |
5 | |
5 |
User | Count |
---|---|
25 | |
10 | |
10 | |
9 | |
6 |