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
Renjith
Helper II
Helper II

DAX help : Count

Hi 

please help on below requirements

 

my sample data

 

Sl no  Role  Region

1        G1     Aus

1        G2     Aus

1        G1     Aus

2        G1     Ind

2        G1     Ind

3        G1     US

3         G2   US

3        G3    US

3       G4     US

3       G1    US

4      G1    NZ

4      G1   NZ

 

 

Requirements

1. Want to find the Count of Sl No whose role is G1,without moving to other role, 

  Answer 2 ,(Sl no 2 & 4 , Sl no 1 & 3 starts in G1 and ends in G1 , but go through other roles)

 

2. want to get an output like this

 

Sl no   hop

1          2

2          1

3          4

4          1

 

hop defines number of roles assigned to each Sl no (for Sl no 1 , G1 & G2 entries are available , like this

 

 

 

 

 

 

1 ACCEPTED SOLUTION
mahoneypat
Employee
Employee

Here are some expressions for your measures:

 

Hop = DISTINCTCOUNT(SI[Role])
 
For the other measure there are two ways to go.
 
Only G1 =
COUNTROWS (
FILTER (
DISTINCT ( SI[SI no] ),
AND (
ISBLANK ( CALCULATE ( COUNTROWS ( SI ), SI[Role] <> "G1" ) ),
NOT ( ISBLANK ( CALCULATE ( COUNTROWS ( SI ), SI[Role] = "G1" ) ) )
)
)
)
 
Or here is a more general way to count the SI No that have only had one role. 
Only Same Role =
COUNTROWS (
FILTER ( DISTINCT ( SI[SI no] ), CALCULATE ( DISTINCTCOUNT ( SI[Role] ) ) = 1 )
)
 

If this works for you, please mark it as the solution.  Kudos are appreciated too.  Please let me know if not.

Regards,

Pat





Did I answer your question? Mark my post as a solution! Kudos are also appreciated!

To learn more about Power BI, follow me on Twitter or subscribe on YouTube.


@mahoneypa HoosierBI on YouTube


View solution in original post

1 REPLY 1
mahoneypat
Employee
Employee

Here are some expressions for your measures:

 

Hop = DISTINCTCOUNT(SI[Role])
 
For the other measure there are two ways to go.
 
Only G1 =
COUNTROWS (
FILTER (
DISTINCT ( SI[SI no] ),
AND (
ISBLANK ( CALCULATE ( COUNTROWS ( SI ), SI[Role] <> "G1" ) ),
NOT ( ISBLANK ( CALCULATE ( COUNTROWS ( SI ), SI[Role] = "G1" ) ) )
)
)
)
 
Or here is a more general way to count the SI No that have only had one role. 
Only Same Role =
COUNTROWS (
FILTER ( DISTINCT ( SI[SI no] ), CALCULATE ( DISTINCTCOUNT ( SI[Role] ) ) = 1 )
)
 

If this works for you, please mark it as the solution.  Kudos are appreciated too.  Please let me know if not.

Regards,

Pat





Did I answer your question? Mark my post as a solution! Kudos are also appreciated!

To learn more about Power BI, follow me on Twitter or subscribe on YouTube.


@mahoneypa HoosierBI on YouTube


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.