Power BI is turning 10, and we’re marking the occasion with a special community challenge. Use your creativity to tell a story, uncover trends, or highlight something unexpected.
Get startedJoin us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register 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.
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 |
---|---|
76 | |
74 | |
58 | |
40 | |
36 |
User | Count |
---|---|
84 | |
69 | |
59 | |
46 | |
46 |