Forum Discussion
How to display data at different lines on Map bubble's labels?
How to show the company info and address info on the above bubble label at different lines, as the following format:
COMPANY Cambridge Travel Lines
17 Hiwi Rd, Tauwhare, Hamilton, New Zealand
Thanks.
The error appears because is you have same adress to two or more companies.
Change the measure to control this:
CompanyName = CONCATENATEX(VALUES(Table2[Company Name]),Table2[Company Name],",")
9 Replies
- Vvelarde
Community Champion
hi, One Question: Do you have Company Id and Adress Info in one Column(field)?
I saw that you have 2 columns Company ID and Address Line.
- j_w
Helper IV
Hi, I haven't used the field Address Line.
But I set CompanyName and Address info to one field Company using SQL statement like:
SELECT "COMPANY NAME"+'\n\r'+"ADDRESS LINE" AS Company, ... FROM COMPANY WHERE ...
Because I have troubles if I use two different fields, as described at