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
Mclovin100
Frequent Visitor

How can I enclose If statement inside a calculate?

Hello,

I have a card that I want it to be dynamic. If someone selected a school from the slicer it will choose that schools MonthlyBudget.

If the user dosent select a school it will just sum all the monthlybudget column.

I tried to use this measure.

CALCULATE ( SUM ( SchoolsBudget[MonthlyBudget] ),_T2, IF(HASONEFILTER(Schools[School]), FILTER(SchoolsBudget,SELECTEDVALUE(SchoolsBudget[School]) = SchoolsBudget[School]) , SUM(SchoolsBudget[MonthlyBudget])))

 

but its giving me this error

A function 'FILTER' has been used in a True/False expression that is used as a table filter expression. This is not allowed.

 

What can I do to fix this?

1 ACCEPTED SOLUTION
v-easonf-msft
Community Support
Community Support

Hi, @Mclovin100 

Please try formula like:

Measure1 =
IF (
    ISFILTERED ( Schools[School] ),
    CALCULATE (
        SUM ( SchoolsBudget[MonthlyBudget] ),
        FILTER ( SchoolsBudget, SchoolsBudget[School] IN VALUES ( Schools[School] ) )
    ),
    CALCULATE ( SUM ( SchoolsBudget[MonthlyBudget] ), ALL ( SchoolsBudget ) )
)

If it doesn't work, please share a sample pbix for further research.

Best Regards,
Community Support Team _ Eason

View solution in original post

1 REPLY 1
v-easonf-msft
Community Support
Community Support

Hi, @Mclovin100 

Please try formula like:

Measure1 =
IF (
    ISFILTERED ( Schools[School] ),
    CALCULATE (
        SUM ( SchoolsBudget[MonthlyBudget] ),
        FILTER ( SchoolsBudget, SchoolsBudget[School] IN VALUES ( Schools[School] ) )
    ),
    CALCULATE ( SUM ( SchoolsBudget[MonthlyBudget] ), ALL ( SchoolsBudget ) )
)

If it doesn't work, please share a sample pbix for further research.

Best Regards,
Community Support Team _ Eason

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.