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

Filtered calculation

Hi

 

I have the following measure which works well, but I would like to make it a little more dynamic.

 

FTL = CALCULATE(sum(TABLE[Value]),Query1[ChannelName]="X",TABLE[SubtestNumber]=1)-CALCULATE(sum(TABLE[Value]),Query1[ChannelName]="X",TABLE[SubtestNumber]=27)

 

I would like to set the last filter to find the max subtest number.

 

I can create a measure that finds the max subtest but cannot unclude that measure in the above calc

 

FTL = CALCULATE(sum(TABLE[Value]),Query1[ChannelName]="X",TABLE[SubtestNumber]=1)-CALCULATE(sum(TABLE[Value]),Query1[ChannelName]="X",TABLE[SubtestNumber]=[Max Subtest])

 

Thanks

 

Chris

1 ACCEPTED SOLUTION
Zubair_Muhammad
Community Champion
Community Champion

Hi @chydewf1

 

Try this one

 

FTL =
VAR MyMax = [Max Subtest]
RETURN
    CALCULATE (
        SUM ( TABLE[Value] ),
        Query1[ChannelName] = "X",
        TABLE[SubtestNumber] = 1
    )
        - CALCULATE (
            SUM ( TABLE[Value] ),
            Query1[ChannelName] = "X",
            TABLE[SubtestNumber] = MyMax
        )

Regards
Zubair

Please try my custom visuals

View solution in original post

2 REPLIES 2
Zubair_Muhammad
Community Champion
Community Champion

Hi @chydewf1

 

Try this one

 

FTL =
VAR MyMax = [Max Subtest]
RETURN
    CALCULATE (
        SUM ( TABLE[Value] ),
        Query1[ChannelName] = "X",
        TABLE[SubtestNumber] = 1
    )
        - CALCULATE (
            SUM ( TABLE[Value] ),
            Query1[ChannelName] = "X",
            TABLE[SubtestNumber] = MyMax
        )

Regards
Zubair

Please try my custom visuals

Great stuff, thanks

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.