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

Quick Question about using IF statements for filtering in power bi

Hey,
The following Query I am using to filter a visual based on the selected term number and week as well as the week number nad corresponding class. In the Query below I only want it to filter by class when the number 3 is selected for the term number. I was wondering if there is a way to incoorperate an IF statement into this query and how the IF statement would be formatted?
 
Current Comments = COALESCE(CALCULATE(
VALUES('Sequence (2)'[Wellbeing]),

FILTER(
'Sequence (2)',
'Sequence (2)'[Term] = SELECTEDVALUE('Date/Time'[Term Number]) && 'Sequence (2)'[Week] = SELECTEDVALUE('Date/Time'[Term Week Number]) && 'Sequence (2)'[Class] = VALUES('kinStudents (2)'[Class]))),
"No focus statement current available.")
1 ACCEPTED SOLUTION
Payeras_BI
Super User
Super User

Hi @Millser ,

See if this could help you.

Current Comments =
COALESCE (
    CALCULATE (
        VALUES ( 'Sequence (2)'[Wellbeing] ),
        IF (
            SELECTEDVALUE ( 'Date/Time'[Term Number] ) = 3,
            FILTER (
                'Sequence (2)',
                'Sequence (2)'[Term] = SELECTEDVALUE ( 'Date/Time'[Term Number] )
                    && 'Sequence (2)'[Week] = SELECTEDVALUE ( 'Date/Time'[Term Week Number] )
                    && 'Sequence (2)'[Class] = VALUES ( 'kinStudents (2)'[Class] )
            ),
            FILTER (
                'Sequence (2)',
                'Sequence (2)'[Term] = SELECTEDVALUE ( 'Date/Time'[Term Number] )
                    && 'Sequence (2)'[Week] = SELECTEDVALUE ( 'Date/Time'[Term Week Number] )
            )
        )
    ),
    "No focus statement current available."
)

 

If this post answered your question, please mark it as a solution to help other users find useful content.
Kudos are another nice way to acknowledge those who tried to help you.

J. Payeras
Mallorca, Spain

View solution in original post

1 REPLY 1
Payeras_BI
Super User
Super User

Hi @Millser ,

See if this could help you.

Current Comments =
COALESCE (
    CALCULATE (
        VALUES ( 'Sequence (2)'[Wellbeing] ),
        IF (
            SELECTEDVALUE ( 'Date/Time'[Term Number] ) = 3,
            FILTER (
                'Sequence (2)',
                'Sequence (2)'[Term] = SELECTEDVALUE ( 'Date/Time'[Term Number] )
                    && 'Sequence (2)'[Week] = SELECTEDVALUE ( 'Date/Time'[Term Week Number] )
                    && 'Sequence (2)'[Class] = VALUES ( 'kinStudents (2)'[Class] )
            ),
            FILTER (
                'Sequence (2)',
                'Sequence (2)'[Term] = SELECTEDVALUE ( 'Date/Time'[Term Number] )
                    && 'Sequence (2)'[Week] = SELECTEDVALUE ( 'Date/Time'[Term Week Number] )
            )
        )
    ),
    "No focus statement current available."
)

 

If this post answered your question, please mark it as a solution to help other users find useful content.
Kudos are another nice way to acknowledge those who tried to help you.

J. Payeras
Mallorca, Spain

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.