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

Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes! Register now.

Reply
Erwin
Helper II
Helper II

Pls explain why why this works with measures but not with variables

Hi all,

Please review below data model.

Capture.PNG

Based on this model I have created the following measures.

NumOfSickCasesReported = 
COUNTROWS ( 
     SickCases
)
NumOfSickCasesOpen = 
CALCULATE (
     [NumOfSickCasesReported],
     FILTER ( 
         ALL ( SickCases[RecoveryDate] ),
         SickCases[RecoveryDate] > MAX ( Calendar12M[Date] )
     )
)
RTOfSickCasesOpen = 
CALCULATE ( 
    [NumOfSickCasesOpen],
    FILTER (
        ALL( Calendar12M[Date] ),
        Calendar12M[Date] <= MAX ( Calendar12M[Date] ) 
    )
)

The RTOfSickCasesOpen measure gives me exactly what I need, a running total number of sick cases open per reporting date, regardless of when the first sick day occurred. Both other measure are just intermediate measures I'm not going to need when creating the dashboard.

 

A cleaner option would be to create just one measure RTOfSickCasesOpen, with the other intermediate measures as variables.

RTOfSickCasesOpen = 
VAR NumOfSickCasesReported = 
COUNTROWS ( 
     SickCases
)

VAR NumOfSickCasesOpen = 
CALCULATE (
     NumOfSickCasesReported,
     FILTER ( 
         ALL ( SickCases[RecoveryDate] ),
         SickCases[RecoveryDate] > MAX ( Calendar12M[Date] )
     )
)

VAR RTOfSickCasesOpen = 
CALCULATE ( 
    NumOfSickCasesOpen,
    FILTER (
        ALL( Calendar12M[Date] ),
        Calendar12M[Date] <= MAX ( Calendar12M[Date] ) 
    )
)

RETURN
RTOfSickCasesOpen

However, this cleaner version of RTOfSickCasesOpen doesn't seem to work as expected.

 

Can anyone tell me why this is the case?

 

Regards,

Erwin

 

 

1 ACCEPTED SOLUTION
MFelix
Super User
Super User

Hi @Erwin ,

 

This as to do with with the context and filter transition within the calculates.

 

Check this blog post by @marcorusso .

 

Believe that you need to redo your measure having the variable within each calculate rather than putting it all before the syntax of the full calculation would be something like this:

 

RTOfSickCasesOpen =
VAR NumOfSickCasesReported =
    COUNTROWS ( SickCases )
RETURN
    CALCULATE (
        VAR NumOfSickCasesOpen =
            CALCULATE (
                NumOfSickCasesReported,
                FILTER (
                    ALL ( SickCases[RecoveryDate] ),
                    SickCases[RecoveryDate] > MAX ( Calendar12M[Date] )
                )
            )
        RETURN
            NumOfSickCasesOpen,
        FILTER (
            ALL ( Calendar12M[Date] ),
            Calendar12M[Date] <= MAX ( Calendar12M[Date] )
        )
    )

Don't have the data to match it but you need to place your VAR within the several measures and not all on top of the expected calculation.

 

@marcorusso  can you please confirm/infirm my suggestion.

 

Regards,

MFelix

 

 


Regards

Miguel Félix


Did I answer your question? Mark my post as a solution!

Proud to be a Super User!

Check out my blog: Power BI em Português



View solution in original post

1 REPLY 1
MFelix
Super User
Super User

Hi @Erwin ,

 

This as to do with with the context and filter transition within the calculates.

 

Check this blog post by @marcorusso .

 

Believe that you need to redo your measure having the variable within each calculate rather than putting it all before the syntax of the full calculation would be something like this:

 

RTOfSickCasesOpen =
VAR NumOfSickCasesReported =
    COUNTROWS ( SickCases )
RETURN
    CALCULATE (
        VAR NumOfSickCasesOpen =
            CALCULATE (
                NumOfSickCasesReported,
                FILTER (
                    ALL ( SickCases[RecoveryDate] ),
                    SickCases[RecoveryDate] > MAX ( Calendar12M[Date] )
                )
            )
        RETURN
            NumOfSickCasesOpen,
        FILTER (
            ALL ( Calendar12M[Date] ),
            Calendar12M[Date] <= MAX ( Calendar12M[Date] )
        )
    )

Don't have the data to match it but you need to place your VAR within the several measures and not all on top of the expected calculation.

 

@marcorusso  can you please confirm/infirm my suggestion.

 

Regards,

MFelix

 

 


Regards

Miguel Félix


Did I answer your question? Mark my post as a solution!

Proud to be a Super User!

Check out my blog: Power BI em Português



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.

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors