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
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
v-binbinyu-msft
Community Support
Community Support

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
v-binbinyu-msft
Community Support
Community Support

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
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.