Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Be 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

Reply
Anonymous
Not applicable

Question with measures

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?

 

count not satisfied = CALCULATE(COUNT('Analisys sheet'[Overall Satisfaction])) , i am not sure what filter should I use
 
the excel file name is analysis sheet
 
Thanks! 
2 ACCEPTED SOLUTIONS
tkirilov
Resolver I
Resolver I

Hi @Anonymous 

This should do it:

CountNotSatisfied =
CALCULATE (
COUNT('Analisys sheet'[Overall Satisfaction]),
'Analisys sheet'[Overall Satisfaction] = "not satisfied")

 

View solution in original post

MFelix
Super User
Super User

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


Did I answer your question? Mark my post as a solution!

Proud to be a Super User!

Check out my blog: Power BI em Português



View solution in original post

4 REPLIES 4
Anonymous
Not applicable

If you want to do it in a single measure:
COUNTROWS(
                      FILTER(
                                 Table,
                                 Table[Satisfaction] = "not satisfied"
                                )
)

MFelix
Super User
Super User

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


Did I answer your question? Mark my post as a solution!

Proud to be a Super User!

Check out my blog: Power BI em Português



tkirilov
Resolver I
Resolver I

Hi @Anonymous 

This should do it:

CountNotSatisfied =
CALCULATE (
COUNT('Analisys sheet'[Overall Satisfaction]),
'Analisys sheet'[Overall Satisfaction] = "not satisfied")

 

Anonymous
Not applicable

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.

Helpful resources

Announcements
Las Vegas 2025

Join us at the Microsoft Fabric Community Conference

March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!

Dec Fabric Community Survey

We want your feedback!

Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.

ArunFabCon

Microsoft Fabric Community Conference 2025

Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.

December 2024

A Year in Review - December 2024

Find out what content was popular in the Fabric community during 2024.