Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
4 years ago
Solved

Filter Context not propagating with IF function used in a measure

Hi All,   Having an issue with a basic IF logic used in a measure. My IF statement is as follows:   Volume Check = IF( [Volume] > 10000, "Flag", "Ok" )     The measure works and...
  • tamerj1's avatar
    tamerj1
    4 years ago

    Anonymous 

    You can modify your measure

    Volume Check =
    IF ( [Volume] > 10000, "Flag", IF ( [Volume] > 0, "Ok" ) )

    or

     

    Volume Check =
    IF ( NOT ISBLANK ( [Volume] ), IF ( [Volume] > 10000, "Flag", "Ok" ) )