Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Enhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.

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
Solution Sage
Solution Sage

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
Solution Sage
Solution Sage

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
July PBI25 Carousel

Power BI Monthly Update - July 2025

Check out the July 2025 Power BI update to learn about new features.

Join our Fabric User Panel

Join our Fabric User Panel

This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.

June 2025 community update carousel

Fabric Community Update - June 2025

Find out what's new and trending in the Fabric community.