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

Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.

Reply
Anonymous
Not applicable

Count Function or Any other Function

Hi,

 

Below is the table in which I want to count number of Units in a building using a measure if possible. 

 

Building IDUnit Type
101L1
101L2
101L3
101L4
101L5
101L6
101L7
102L1
102L2
102L3
102L4
102L5

 

 

And I want the measure to count as below :

 

Building IDNo. of Unit
1017
1025
1 ACCEPTED SOLUTION
Anonymous
Not applicable

Hi @Anonymous ,

Please try to create a measure with below dax formula:

No.of Unit =
VAR _id =
    SELECTEDVALUE ( 'Table'[Building ID] )
VAR tmp =
    FILTER ( ALL ( 'Table' ), [Building ID] = _id )
VAR _val =
    CALCULATE ( COUNT ( 'Table'[Unit Type] ), tmp )
RETURN
    _val

vbinbinyumsft_0-1683785257025.png

Please refer the attached .pbix file.

 

Best regards,
Community Support Team_Binbin Yu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

2 REPLIES 2
Anonymous
Not applicable

Hi @Anonymous ,

Please try to create a measure with below dax formula:

No.of Unit =
VAR _id =
    SELECTEDVALUE ( 'Table'[Building ID] )
VAR tmp =
    FILTER ( ALL ( 'Table' ), [Building ID] = _id )
VAR _val =
    CALCULATE ( COUNT ( 'Table'[Unit Type] ), tmp )
RETURN
    _val

vbinbinyumsft_0-1683785257025.png

Please refer the attached .pbix file.

 

Best regards,
Community Support Team_Binbin Yu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Mahesh0016
Super User
Super User

@Anonymous 
No. of Unit = COUNT(Table[Unit Type])
#####################################
No. of Unit 1 =
calculate([No. of Unit],ALLEXCEPTE(TableName,Table[Building ID]))

 

################################################

No. of Unit 2 =
calculate(COUNT(Table[Unit Type]),ALLEXCEPTE(TableName,Table[Building ID]))

 

 

If this post helps, then please consider accepting it as the solution to help other members find it more quickly.THANK YOU!!

Helpful resources

Announcements
FabCon Global Hackathon Carousel

FabCon Global Hackathon

Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

Check out the October 2025 Power BI update to learn about new features.

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.