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
alexsimpson
Helper I
Helper I

Count unique values when another column has one value but not another value

Hi, I have a data set similar to below:

 

NameIncome TypeAmount
AlexInitial100
JohnInitial100
SamOngoing100
AlexInitial100
JohnOngoing100
SamOngoing100

 

I am trying to create a measure that counts the number of people that just have 'Initial' i.e. have initial but don't have ongoing. Therefore on the above, it would be 1 which would be Alex. 

 

Any help would be much appreciated.

 

Many thanks in advance,

 

Alex

2 ACCEPTED SOLUTIONS
tex628
Community Champion
Community Champion

Measure = 
IF(
CALCULATE(DISTINCTCOUNT(Table1[Column]) = 1),
    CALCULATE(DISTINCTCOUNT(Table1[Column]), Table1[Income Type] = "Initial"), BLANK()
)

Table1[Column] being a Calculated column = [Name] & [Income Type] 


Connect on LinkedIn

View solution in original post

v-yuta-msft
Community Support
Community Support

@tex628 ,

 

The solution of Tex is simple and great. In addtion, you can also create a calculate column [Flag]:

Flag = 
IF (
    CALCULATE (
        DISTINCTCOUNT ( 'Table'[Income Type] ),
        ALLEXCEPT ( 'Table', 'Table'[Name] )
    ) = 1
        && CALCULATE (
            DISTINCTCOUNT ( 'Table'[Name] ),
            FILTER (
                ALLEXCEPT ( 'Table', 'Table'[Name] ),
                'Table'[Income Type] = "Initial"
            )
        ) = 1,
    1,
    0
)

Then create a measure which may also achieve the result:

Count = CALCULATE(DISTINCTCOUNT('Table'[Name]), FILTER('Table', 'Table'[Flag] = 1))

 

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

@tex628 ,

 

The solution of Tex is simple and great. In addtion, you can also create a calculate column [Flag]:

Flag = 
IF (
    CALCULATE (
        DISTINCTCOUNT ( 'Table'[Income Type] ),
        ALLEXCEPT ( 'Table', 'Table'[Name] )
    ) = 1
        && CALCULATE (
            DISTINCTCOUNT ( 'Table'[Name] ),
            FILTER (
                ALLEXCEPT ( 'Table', 'Table'[Name] ),
                'Table'[Income Type] = "Initial"
            )
        ) = 1,
    1,
    0
)

Then create a measure which may also achieve the result:

Count = CALCULATE(DISTINCTCOUNT('Table'[Name]), FILTER('Table', 'Table'[Flag] = 1))

 

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.

tex628
Community Champion
Community Champion

Measure = 
IF(
CALCULATE(DISTINCTCOUNT(Table1[Column]) = 1),
    CALCULATE(DISTINCTCOUNT(Table1[Column]), Table1[Income Type] = "Initial"), BLANK()
)

Table1[Column] being a Calculated column = [Name] & [Income Type] 


Connect on LinkedIn

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.