Forum Discussion

qmestu's avatar
qmestu
Helper IV
3 years ago
Solved

Replacing default text for blank

Hi,   In one of my dashboards, when i choose a combination of values in slicers some of my measures display "blank". While this is correct, because there aren't any values for some combinations, wo...
  • DOLEARY85's avatar
    3 years ago

    Hi,

     

    You should be able to achieve this by wrapping the measure in an if statment. e.g.

     

    if(isblank(Your measure),"Whatever you want the value to be",Your Measure)

     

    Here's a live example:

     

    Measure 5 = if(isblank(CALCULATE(sum('Table (8)'[column2]),value('Table (8)'[Column1])=01/04/2023)),"There are none",CALCULATE(sum('Table (8)'[column2]),value('Table (8)'[Column1])=01/04/2023))
     

     

    If I answered your question, please mark my post as solution, Appreciate your Kudos ๐Ÿ‘