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
victorbetancurt
Regular Visitor

Distinct Count with value in same table

Hi everyone.

Beforehand, sorry for my bad english.

I have a table like this ('Table1'):

CODESTATE
1015A
1016A
1017B
1015B
1016B
1017B
1015C
1015A
1017B


I want a solution as optimal as possible. (I'd rather calculate with a Power Query function, not DAX).

I want a function (or formula, whatever) that helps me to count every different state for each row with the same code.

My result should be this:

CODESTATERESULT
1015A3
1016A2
1017B1
1015B3
1016B2
1017B1
1015C3
1015A3
1017B1

I explain the result: For code 1015 is 3 because there are 3 unique values for 1015 (A,B,C). For code 1016 is 2 there are 2 unique values (A,B). For code 1017 is 1 because there are 1 unque value for 1017 (B).

1 ACCEPTED SOLUTION

Another thing you may want to try then is instead of appending the two data tables, merge them side by side.

 

So intead of your original table, you end up with something like this:

 

CODEPREV_STATECUR_STATECHANGED
1015AATRUE
1016ABFALSE
1017BBTRUE

 

If whatever index you're using for each row stays the same between days, this may be a better way to store your data.  Be sure to check my previous reply for DAX code to solve your original problem

View solution in original post

12 REPLIES 12

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.