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

Earn a 50% discount on the DP-600 certification exam by completing the Fabric 30 Days to Learn It challenge.

Reply
Durbslaw
Helper I
Helper I

Return count from filter

Hi,

 

I have the following incorrect DAX measure (it should return a count of PersalNo for the filter African Males)

CountOfAfricanMales =
var filtered=
FILTER(
Demographics,
Demographics[Race]='African' &&
Demographics[Gender]='Male')
return
SELECTCOLUMNS(COUNT(
filtered,
"African Male",
'Staff Management'[CountOfPersalNo])
)

2 REPLIES 2
Tahreem24
Super User
Super User

@Durbslaw Can you able to share sample data (copy paste here)?

 

Don't forget to give thumbs up and accept this as a solution if it helped you!!!

Please take a quick glance at newly created dashboards : Restaurant Management Dashboard , HR Analytics Report , Hotel Management Report, Sales Analysis Report , Fortune 500 Companies Analysis , Revenue Tracking Dashboard
Durbslaw
Helper I
Helper I

I think i have it...

 

CountOfAfricanMales =
var filtered=
FILTER(
Demographics,
Demographics[Race]='African' &&
Demographics[Gender]='Male')
return
CALCULATE(
[CountOfPersalNo],
filtered)

 

Helpful resources

Announcements
LearnSurvey

Fabric certifications survey

Certification feedback opportunity for the community.

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.