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
JD193704
Frequent Visitor

Calculated column to count unique expressions of other column

Hello,

 

what I am looking for seems pretty simple. I have on column with a few different expressions. As long there is the same expression inside, the calculated column should always show "1". First if there comes up a new expression, it should switch to "2". A example is shown in the table below. Should I use the INDEX function or any kind of COUNT function or something completely different? 

Thankful for any help!

Column 1Calculated Column
ABC1
ABC1
ABC1
ABC1
EFG2
EFG2
HIJ3
HIJ3

 

1 ACCEPTED SOLUTION
Ritaf1983
Super User
Super User

Hi @JD193704 
You can create the calculated column with the following Dax :

UniqueRank = RANKX(ALL('Table'), 'Table'[Column 1],,ASC,Dense)
Ritaf1983_0-1697126456381.png

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

View solution in original post

1 REPLY 1
Ritaf1983
Super User
Super User

Hi @JD193704 
You can create the calculated column with the following Dax :

UniqueRank = RANKX(ALL('Table'), 'Table'[Column 1],,ASC,Dense)
Ritaf1983_0-1697126456381.png

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

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.