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 know is a rookie question but i am not able to do it
i want a measure to know how many items of one value i have
the cell of the excel file is named overall satisfaction, and it have neutral and not satisfied.
How can i have a measure to have the number of not satisfied?
Solved! Go to Solution.
Hi @Anonymous
This should do it:
CountNotSatisfied =
CALCULATE (
COUNT('Analisys sheet'[Overall Satisfaction]),
'Analisys sheet'[Overall Satisfaction] = "not satisfied")
Hi @Anonymous ,
I'm assuming that when you are refering to neutral and not satisfied and not satisfied is values in a column of your spreadsheet correct?
The easier way is to just place the column on your visualization, select the aggregation count and then filter to the values Not Satisfied.
If you want to use a measure your calculation should be something similar to this:
count not satisfied = CALCULATE(COUNT('Analisys sheet'[Overall Satisfaction]); 'Analisys sheet'[Overall Satisfaction] = "Not Satisfied")
Regards
Miguel Félix
Proud to be a Super User!
Check out my blog: Power BI em PortuguêsIf you want to do it in a single measure:
COUNTROWS(
FILTER(
Table,
Table[Satisfaction] = "not satisfied"
)
)
Hi @Anonymous ,
I'm assuming that when you are refering to neutral and not satisfied and not satisfied is values in a column of your spreadsheet correct?
The easier way is to just place the column on your visualization, select the aggregation count and then filter to the values Not Satisfied.
If you want to use a measure your calculation should be something similar to this:
count not satisfied = CALCULATE(COUNT('Analisys sheet'[Overall Satisfaction]); 'Analisys sheet'[Overall Satisfaction] = "Not Satisfied")
Regards
Miguel Félix
Proud to be a Super User!
Check out my blog: Power BI em PortuguêsHi @Anonymous
This should do it:
CountNotSatisfied =
CALCULATE (
COUNT('Analisys sheet'[Overall Satisfaction]),
'Analisys sheet'[Overall Satisfaction] = "not satisfied")
Hello!
I would just use COUNT('Analisys sheet'[Overall Satisfaction])+0 and then when you use the measure in a visual put up a filter on it to only count not satisfied.
The +0 is to never show blank() in the report.
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 |
---|---|
62 | |
58 | |
55 | |
36 | |
33 |
User | Count |
---|---|
81 | |
67 | |
45 | |
45 | |
43 |