Forum Discussion

mshaivitz's avatar
mshaivitz
Frequent Visitor
8 years ago
Solved

Blank/Null dates showing wrong in Esri map

I have a list of dates in a spreadsheets along with locations in the Esri map visualization. The date is a 'start date' and most of the cells are blank. Instead of showing as (blank) they are display...
  • v-ljerr-msft's avatar
    8 years ago

    Hi mshaivitz,

     

    Based on my test, you can firstly use the formula below to create a new measure to get the "Implementation Will Begin" Date(return "(Blank)") when it is Null.

    Implementation Will Begin On = 
    IF (
        ISBLANK ( MIN ( 'Table 0'[Implementation Will Begin] ) ),
        "(Blank)",
        MIN ( 'Table 0'[Implementation Will Begin] )
    )
    

     

    Then show the measure instead of the "Implementation Will Begin" column on the Tooltips to show the Null cells as (Blank) in the tooltip if there isn't a date in there.

     

     

    Here is the modified pbix file for your reference. :smileyhappy:

     

    Regards