Forum Discussion
Blank/Null dates showing wrong in Esri map
- 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
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
- Anonymous8 years agoNot applicable
My date is in a date data type, while this works for the blanks, the records that had a real date are shown as #0.0.00
Do I need to conver the date back to a string? If so, what is the formula for this. TIA.
- Anonymous7 years agoNot applicable
I am having the same issue when using this code