Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
In GIS popup I have to put concat([ID],',') ....
One location has multiple ID's....but the above script is not working....HTML version is different for this script ??
<tr>
<td class="mylabel">Location ID:</td>
<td>'& concat([ID],',') &'</td>
</tr>
Thanks much
Try adding 'Distinct' into the concat function like .
<tr>
<td class="mylabel">Location ID:</td>
<td>'& concat(Distinct [ID],',') &'</td>
</tr>
Hope this works.
Mike
Mike solution should work or can you send full script on wall