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
tomkribi
New Member

DAX Measure IF AND with multiple conditions

Hi

 

Can anyone help me with the following;

 

Measure =
IF (
    AND (
        CONTAINS (
            'table1',
            'table1'[FID_Custom], "TRUE"
        ),
        CALCULATE (
            CONTAINS (
                'table1',
                'table1'[Status], "Validated"
            )
        )
    ),
    1,
    0
)

 

=> I want to get all rows with 'table1'[FID_Custom]"TRUE" and  'table1'[Status] "Valiated" => currently I get only the "TRUE" once.

It is a IF condition with multiple selections.

 

Many thanks

2 ACCEPTED SOLUTIONS
AlB
Super User
Super User

Hi @tomkribi 

Try

Measure =
CALCULATE (
    COUNT ( 'table1'[FID_Custom] ),
    'table1'[FID_Custom] = TRUE (),
    'table1'[Status] = "Validated"
)

if FID_Custom  is of Boolean type. Or:

 

Measure =
CALCULATE (
    COUNT ( 'table1'[FID_Custom] ),
    'table1'[FID_Custom] = "TRUE",
    'table1'[Status] = "Validated"
)

 

if FID_Custom  is of text type.

Please mark the question solved when done and consider giving a thumbs up if posts are helpful.

Contact me privately for support with any larger-scale BI needs, tutoring, etc.

Cheers 

SU18_powerbi_badge

 

View solution in original post

Great, many thanks, this is the solution for me

Measure =
CALCULATE (
    COUNT ( 'table1'[FID_Custom] ),
    'table1'[FID_Custom] = "TRUE",
    'table1'[Status] = "Validated"
)

View solution in original post

3 REPLIES 3
AlB
Super User
Super User

Hi @tomkribi 

Try

Measure =
CALCULATE (
    COUNT ( 'table1'[FID_Custom] ),
    'table1'[FID_Custom] = TRUE (),
    'table1'[Status] = "Validated"
)

if FID_Custom  is of Boolean type. Or:

 

Measure =
CALCULATE (
    COUNT ( 'table1'[FID_Custom] ),
    'table1'[FID_Custom] = "TRUE",
    'table1'[Status] = "Validated"
)

 

if FID_Custom  is of text type.

Please mark the question solved when done and consider giving a thumbs up if posts are helpful.

Contact me privately for support with any larger-scale BI needs, tutoring, etc.

Cheers 

SU18_powerbi_badge

 

Great, many thanks, this is the solution for me

Measure =
CALCULATE (
    COUNT ( 'table1'[FID_Custom] ),
    'table1'[FID_Custom] = "TRUE",
    'table1'[Status] = "Validated"
)
Pragati11
Super User
Super User

Hi @tomkribi ,

 

There is a simpler way of writing your IF statement: (Create a caluclated column)

 

calcColumn = IF('table1'[FID_Custom] = "TRUE" && 'table1'[Status] = "Valiated", 1, 0)

 

If this doesn't help post some sample data and desired output.

 

Thanks,

Pragati

Best Regards,

Pragati Jain


MVP logo


LinkedIn | Twitter | Blog YouTube 

Did I answer your question? Mark my post as a solution! This will help others on the forum!

Appreciate your Kudos!!

Proud to be a Super User!!

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.

Top Solution Authors