Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Learn more
Hi,
Below is the table in which I want to count number of Units in a building using a measure if possible.
| Building ID | Unit Type | 
| 101 | L1 | 
| 101 | L2 | 
| 101 | L3 | 
| 101 | L4 | 
| 101 | L5 | 
| 101 | L6 | 
| 101 | L7 | 
| 102 | L1 | 
| 102 | L2 | 
| 102 | L3 | 
| 102 | L4 | 
| 102 | L5 | 
And I want the measure to count as below :
| Building ID | No. of Unit | 
| 101 | 7 | 
| 102 | 5 | 
Solved! Go to Solution.
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
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.
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
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.
@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!!
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.