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

Measure in DAX: How to count rows of column A with same value based on unique ID in (column B)

Hello,

 

I'm still fairly new to using DAX in PowerBI. I was wondering how I can count number of rows based on a unique value.

 

So for instance:

 

Table 1

Class  |   Lang

------------------

 1      |   English

 1      |   English

 1      |   English

 1      |   Chinese

 2      |   Italian

 3      |   Arabic

 3      |   Arabic

 3      |   Chinese

 

What I was hoping for:

Resulting measure "Result"

Class  |   Language  |   Result

---------------------------------------

1        |   English      |    3

1        |   Chinese     |    1

2        |    Italian       |    1

3        |    Arabic       |   2 

3        |    Chinese    |    1

 

How can I create the measure "Result" in DAX based on the example diagrams above?

 

Thanks

2 ACCEPTED SOLUTIONS
Anonymous
Not applicable

You don't need to create the measure "result" to do that, you only have to add "Lang" again to values pane and select "count" option fos this.

 

See the example:

 

count.png

View solution in original post

v-yuta-msft
Community Support
Community Support

@Anonymous ,

 

Or you can just use measure 

Result = COUNT('Table'[Lang])

Capture.PNG 

 

Community Support Team _ Jimmy Tao

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-yuta-msft
Community Support
Community Support

@Anonymous ,

 

Or you can just use measure 

Result = COUNT('Table'[Lang])

Capture.PNG 

 

Community Support Team _ Jimmy Tao

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

Anonymous
Not applicable

You don't need to create the measure "result" to do that, you only have to add "Lang" again to values pane and select "count" option fos this.

 

See the example:

 

count.png

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.