Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
6 years ago
Solved

Card and if statement


I am trying to display a card saying either "warning" or "all good" based on the count of coursekey. 

I only want it to display warning if one specific coursekey appear more than once. However, the example above gave a warning message instead of all good even though these two coursekey were different. It should only give a warning if  for example coursekey 36 appear twice.

  • Anonymous's avatar
    Anonymous
    6 years ago

    Hi Anonymous ,

     

     

    Try this measure

     

    Meaure 3 =
    VAR a =
        COUNT ( CheckforforgottenentriesLastyear[Course Key] )
    RETURN
        IF (
            a >= 2,
            "Warning",
            "All Good"
        )

     

    Regards,

    Harsh Nathani

4 Replies

  • Anonymous's avatar
    Anonymous
    Not applicable

    Hi Anonymous ,

     

     

    Try this measure

     

    Meaure 3 =
    VAR a =
        COUNT ( CheckforforgottenentriesLastyear[Course Key] )
    RETURN
        IF (
            a >= 2,
            "Warning",
            "All Good"
        )

     

    Regards,

    Harsh Nathani

    • Anonymous's avatar
      Anonymous
      Not applicable

      Hi Anonymous 
      It did work and show warning if there is more than 2 entries for from different coursekey

      However, what I want is to only show if one coursekey occur twice but I think the DAX you gave me was pretty close to the one I want.  

      • Anonymous's avatar
        Anonymous
        Not applicable

        HI Anonymous ,

         

        Can you share sample data and expected output.

         

        Regards,

        HN

         

    • Anonymous's avatar
      Anonymous
      Not applicable

      Hi Anonymous 

      I modified my query during the ETL process and it worked. 

      Thank you 🙂