Hi everbody,
I want to generate an integer parameter that contain whole data from the table in one line, where the values for the same row are sparated by “,” and values of each rows are separated by “|”.
Wish the final result looks like that:
“1, 2 | 3, 4 | 5, 5 | 6, 7 | 8, 9 | 12, 0”
Table:
Location\XY | Lan | Long |
Place1 | 1 | 2 |
Place 2 | 3 | 4 |
Place 3 | 5 | 5 |
Place 4 | 6 | 7 |
Place 5 | 8 | 9 |
Place 6 | 12 | 0 |
The data is located in the parameter(cityID, XY). Where CityID corresponds to list of cities, and XY has two possible values “Lan” and “Long”.
Thank you for your help :)
Cheers,