Forum Discussion

gaznez's avatar
gaznez
Resolver I
3 years ago
Solved

Display extra information in tooltip (map visualisation)

I have a working model that includes a map visual showing where all the customers are.  The map has 'postcode' as the Location, 'Total Sales' for the bubble size and 'Customer name' as the tooltip.  ...
  • gaznez's avatar
    3 years ago

    Managed to find a solution myself.  I created the following measure:

    ConcatCustomers = CONCATENATEX(
        CustomerMaster,
        CustomerMaster[Customer Name],
        ", ")
    Then I dragged this measure in to the tooltip field for the map visual.  Now if one postcode has several customers - it lists them all separated by a comma.