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.
Dear Colleagues;
I reach out to you to request your support
1. I have the data set below:
Did you receive your salary? |
Yes |
Yes |
Yes |
No |
Yes |
No |
No |
No |
Yes |
Yes |
No |
No |
No |
Yes |
Yes |
Yes |
Yes |
2. this the results of countif:
Yes | No |
10 | 7 |
3. But instead of this kind of results "i would like to have the results below Highlight in green" :
Solved! Go to Solution.
Thanks for the reply from xifeng_L , please allow me to provide another insight:
Hi @dofrancis3 ,
Here are the steps you can follow:
1. Create calculated table.
Table 2 =
var _table=
SUMMARIZE(
'Table',[Did you receive your salary?],"Count",COUNTX('Table',[Did you receive your salary?]))
var _yes=
SUMX(FILTER(_table,[Did you receive your salary?]="Yes"),[Count])
VAR _NO=
SUMX(FILTER(_table,[Did you receive your salary?]="No"),[Count])
VAR _table2=
SELECTCOLUMNS(
_table ,
"Yes",IF(_yes>=_NO,1,0),
"No",IF(_NO>_yes,1,0))
return
DISTINCT(
_table2)
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
Thanks for the reply from xifeng_L , please allow me to provide another insight:
Hi @dofrancis3 ,
Here are the steps you can follow:
1. Create calculated table.
Table 2 =
var _table=
SUMMARIZE(
'Table',[Did you receive your salary?],"Count",COUNTX('Table',[Did you receive your salary?]))
var _yes=
SUMX(FILTER(_table,[Did you receive your salary?]="Yes"),[Count])
VAR _NO=
SUMX(FILTER(_table,[Did you receive your salary?]="No"),[Count])
VAR _table2=
SELECTCOLUMNS(
_table ,
"Yes",IF(_yes>=_NO,1,0),
"No",IF(_NO>_yes,1,0))
return
DISTINCT(
_table2)
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 @dofrancis3
You can try the svg to generate the icon, such as:
Did I answer your question? If yes, pls mark my post as a solution and appreciate your Kudos !
Thank you~
Dear @xifeng_L From my on of the colomns that i have i my data set I would like : from this colomn (Dit you receive your salary) to get table Highlight in yellow below.
You can try below calculated table expression.
Table 2 =
SELECTCOLUMNS(
SUMMARIZECOLUMNS('Table'[Did you receive your salary?],"Salary",COUNTROWS('Table')),
"Salary",IF('Table'[Did you receive your salary?]="Yes",[Salary],0)
)
Did I answer your question? If yes, pls mark my post as a solution and appreciate your Kudos !
Thank you~
Or is there another way to get the same results that can allow me to use the Icon? because i would like to use ICON instead of number.
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 |