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

To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.

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
September Power BI Update Carousel

Power BI Monthly Update - September 2025

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

August 2025 community update carousel

Fabric Community Update - August 2025

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

Top Solution Authors