Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
6 years ago
Solved

Display image or text when there is no data?

Hey all,   I have a few reports up and running and when I start using slicers to display the different visuals by "department" I have noticed that some of the smaller departments have gaps in their...
  • mahoneypat's avatar
    6 years ago

    Yes.  Just return your measure in a variable and then use IF() to return alternate text if blank.

     

    MyMeasure = var measure1 = [Original Measure]

    return IF(ISBLANK(measure1), "Not Enough Data", measure1)

     

    If this works for you, please mark it as the solution.  Kudos are appreciated too.  Please let me know if not.

    Regards,

    Pat