Forum Discussion

mdbuzzer's avatar
mdbuzzer
Helper I
5 years ago
Solved

Why is my nested IF statement not working?

I am creating a Measure using dax to create a dynamic title, so if the DM has been filtered it should adjust the title to specify "Current Year vs Previous Year for DM", but I have also added another IF statement which should add the store name if it has been filtered. So if both have been filtered it should say "Current Year vs Previous Year for DM for StoreName". If none has been filtered then it should just display "Current Year vs Previous Year.
 
 
Current Year vs Previous Year = IF(
ISFILTERED(District[DM]),"Current Year vs Previous Year for " &
SELECTEDVALUE(District[DM]),
IF(AND(ISFILTERED(Store[Name]),ISFILTERED(District[DM])),
"Current Year vs Previous Year for " & SELECTEDVALUE(District[DM]) & "for "
& SELECTEDVALUE(Store[Name]),"Current Year vs Previous Year"
)
)
  • Anonymous's avatar
    Anonymous
    5 years ago

    Hello mdbuzzer ,

     

    Please try with below DAX

     

    Measure = IF(ISFILTERED(District[DM])&&ISFILTERED(Store[Name]),"Current Year vs Previous Year for "&SELECTEDVALUE(District[DM])&" for "&SELECTEDVALUE(Store[Name]),IF(ISFILTERED(District[DM]),"Current Year vs Previous Year for "&SELECTEDVALUE(District[DM]),"Current Year vs Previous Year"))

3 Replies

  • Anonymous's avatar
    Anonymous
    Not applicable

    Hello mdbuzzer ,

     

    Please try with below DAX

     

    Measure = IF(ISFILTERED(District[DM])&&ISFILTERED(Store[Name]),"Current Year vs Previous Year for "&SELECTEDVALUE(District[DM])&" for "&SELECTEDVALUE(Store[Name]),IF(ISFILTERED(District[DM]),"Current Year vs Previous Year for "&SELECTEDVALUE(District[DM]),"Current Year vs Previous Year"))
    • mdbuzzer's avatar
      mdbuzzer
      Helper I

      Ahh very simple - I should have just used && rather than the AND function

  • Hi, mdbuzzer 

    I am not sure how it will work, but please try the below.

     

    new measures =
    SWITCH (
    TRUE (),
    AND ( ISFILTERED ( Store[Name] ), ISFILTERED ( District[DM] ) ),
    "Current Year vs Previous Year for " & SELECTEDVALUE ( District[DM] ) & "for "
    & SELECTEDVALUE ( Store[Name] ),
    ISFILTERED ( District[DM] ), "Current Year vs Previous Year for " & SELECTEDVALUE ( District[DM] ),
    "Current Year vs Previous Year"
    )

     

     

    Hi, My name is Jihwan Kim.

     

    If this post helps, then please consider accept it as the solution to help other members find it faster, and give a big thumbs up.

     

    Linkedin: linkedin.com/in/jihwankim1975/

    Twitter: twitter.com/Jihwan_JHKIM