March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early bird discount ends December 31.
Register NowBe one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now
Hi all,
I am relatively new to Power Bi, so the answer to my question may be something simple but I cannot figure it out.
I have a table where I have created 3 separate columns which are showing information based on defined conditions.
Now I would like to create another (4th column) which will be filtered based on the previous columns:
the idea is if the raws in the 3 columns are "-" for the result to be filtered as "-" in the last column. If the values are all"yes", the result to be "yes" and if there is even one "no" the result to be "no".
I tried creating a custom column which did not work. Help would be greatly appreciated.
thanks
Martin
Solved! Go to Solution.
Hi @Anonymous ,
Here are the steps you can follow:
1. Create calculated column.
KPI Overall =
var _yes=IF([Delivery KPI PC]="Yes",1,0)+IF([Delivery KPI Print]="Yes",1,0)+IF([Delivery KPI DJ]="Yes",1,0)
var _no=IF([Delivery KPI PC]="No",1,0)+IF([Delivery KPI Print]="No",1,0)+IF([Delivery KPI DJ]="No",1,0)
return
SWITCH(
TRUE(),
_yes+_no=0,"-",
_no=1,"No",
_yes=3,"Yes",
BLANK())
2. Result.
Best Regards,
Liu Yang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @Anonymous ,
Here are the steps you can follow:
1. Create calculated column.
KPI Overall =
var _yes=IF([Delivery KPI PC]="Yes",1,0)+IF([Delivery KPI Print]="Yes",1,0)+IF([Delivery KPI DJ]="Yes",1,0)
var _no=IF([Delivery KPI PC]="No",1,0)+IF([Delivery KPI Print]="No",1,0)+IF([Delivery KPI DJ]="No",1,0)
return
SWITCH(
TRUE(),
_yes+_no=0,"-",
_no=1,"No",
_yes=3,"Yes",
BLANK())
2. Result.
Best Regards,
Liu Yang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi, @Anonymous
Please check the below picture and the sample pbix file's link down below.
I could not know the condition of the result if there is only one yes, so I just flagged it as "check again".
The below is for the column creation.
Hi, My name is Jihwan Kim.
If this post helps, then please consider accept it as the solution to help other members find it faster, and give a big thumbs up.
If this post helps, then please consider accepting it as the solution to help other members find it faster, and give a big thumbs up.
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.
Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.
User | Count |
---|---|
124 | |
87 | |
87 | |
70 | |
51 |
User | Count |
---|---|
205 | |
153 | |
97 | |
79 | |
69 |