Supplies are limited. Contact info@espc.tech right away to save your spot before the conference sells out.
Get your discountScore big with last-minute savings on the final tickets to FabCon Vienna. Secure your discount
I have a requirement where I need to display 0 on the tooltip, when there is no record for the selected state in my dataset.
As an example - In the below-attached map, I do not have any records for Alabama in my data file, How can I display 0 when I hover on state Alabama? (Currently, it is not colored as do not have a record for Alabama)
Hi @nagavineela ,
Do the suggestions from engineers make sense? If so, kindly mark the proper reply as a solution to help others having the similar issue and close the case. If not, let me know and I'll try to help you further.
Best regards
Amy
@nagavineela - So typically, this goes something like:
Measure =
VAR __Calc = <some calc>
RETURN
IF(ISBLANK(__Calc),0,__Calc)
@Greg_Deckler , I created a similar function but when I filtered the map, I am still seeing the same issue of - not highlighting the states with no value.
Function:
In the below image, I filtered the chart based on one of my filters.
Hi @nagavineela ,
You may set the Value of tooltips box as "Distinct (Count)" like below.
Also you may try to change the COUNT function to DISTINCTCOUNTNOBLANK in your formula.
Best Regards,
Amy
Community Support Team _ Amy
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.