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

IF and calculation

Hi, how can I calculated that how many value '1' and value '0' appears in the column?

 

help.PNG

 

Thanks for help!

 

1 ACCEPTED SOLUTION
zoloturu
Memorable Member
Memorable Member

Hi @Sisko ,

 

Calc_0_and_1 =
CALCULATE (
    COUNT ( 'Table'[Column1] ),
    'Table'[Column1] = 0
        || 'Table'[Column1] = 1
)

This calculation does count of values in a field 'Table'[Column1] with either 0 either 1 value.

 

|| symbol is an equivalent of OR. So you can solve it in another way as well:

 

Calc_0_and_1 =
CALCULATE (
    COUNT ( 'Table'[Column1] ),
    OR ( 'Table'[Column1] = 0, 'Table'[Column1] = 1 )
)

The only difference between OR and || symbol that, actually OR is limited to 2 arguments.

 

Regards,
Ruslan
-------------------------------------------------------------------
Did I answer your question? Mark my post as a solution!

View solution in original post

3 REPLIES 3
zoloturu
Memorable Member
Memorable Member

Hi @Sisko ,

 

Calc_0_and_1 =
CALCULATE (
    COUNT ( 'Table'[Column1] ),
    'Table'[Column1] = 0
        || 'Table'[Column1] = 1
)

This calculation does count of values in a field 'Table'[Column1] with either 0 either 1 value.

 

|| symbol is an equivalent of OR. So you can solve it in another way as well:

 

Calc_0_and_1 =
CALCULATE (
    COUNT ( 'Table'[Column1] ),
    OR ( 'Table'[Column1] = 0, 'Table'[Column1] = 1 )
)

The only difference between OR and || symbol that, actually OR is limited to 2 arguments.

 

Regards,
Ruslan
-------------------------------------------------------------------
Did I answer your question? Mark my post as a solution!

RobbeVL
Impactful Individual
Impactful Individual

Calc_0_and_1 = 
CALCULATE (
    COUNT ( 'Table'[Column1] ),
    'Table'[Column1]  IN {0,1}
)

 

Just to give some more options! 🙂 

 

Robbe 

RobbeVL
Impactful Individual
Impactful Individual

You will have to Use CALCULATE:

CALCULATE( COUNT(XXX), Category =0 || 1 ) 

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.