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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
gingerclaire
Helper III
Helper III

Count number of attendees based on non blank attendee name fields

I have a table for an appointment and it has columns as follows for each event (each row):

 

Attendee 1 name

Attendee 2 name

Attendee 3 name

Attendee 4 name

Attendee 5 name

Attendee 6 name

(all the way to 16!)

 

I need a measure to count the number of attendees at each appointment - by counting the non blanks in the name field.

 

I am completely stuck on how to do this - please can you help?

3 REPLIES 3
djurecicK2
Super User
Super User

djurecicK2
Super User
Super User

Hi @gingerclaire ,

 You should be able to use the COUNTA function to do this.

(Adapt for your table and field names)

 

Number of Attendees= COUNTA(Table[FieldName])

 

https://learn.microsoft.com/en-us/dax/counta-function-dax

Counts the number of rows in the specified column that contain non-blank values.

 

Please consider accepting as solution if this answers the question- thanks!

Thank you - I need to be able to do this across multiple fields for the table as below (I actually have 16 attendee fields):

 Attendee1nameAttendee2nameAttendee3nameAttendee4nameAttendee5nameAttendee6nameTotal attendees
Event 1JohnSarahJamesGeoff  4
Event 2HelenBob    2

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

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.

Top Solution Authors