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

Next up in the FabCon + SQLCon recap series: The roadmap for Microsoft SQL and Maximizing Developer experiences in Fabric. All sessions are available on-demand after the live show. Register now

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

Regards,
Rita Fainshtein | Microsoft MVP
https://www.linkedin.com/in/rita-fainshtein/
Blog : https://www.madeiradata.com/profile/ritaf/profile

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

Regards,
Rita Fainshtein | Microsoft MVP
https://www.linkedin.com/in/rita-fainshtein/
Blog : https://www.madeiradata.com/profile/ritaf/profile

Helpful resources

Announcements
New to Fabric survey Carousel

New to Fabric Survey

If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.

March Power BI Update Carousel

Power BI Community Update - March 2026

Check out the March 2026 Power BI update to learn about new features.