Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
alex_lin
Partner - Contributor
Partner - Contributor

get response value from selected field, and list out

if I have a table as followed,

citylatitudelongitude
HYDERABAD17.3978.47
GUWAHATI26.1891.76
AURANGABAD24.7584.38

I want to know how to get the pair values of latitude and longitude when I select any city.

I only know I can get selected value of city by using GetFieldSelections(city)

example :

if I select HYDERABAD and GUWAHATI,

and I wanna get the value 17.39, 78.47 | 26.18, 91.76

Thanks

1 Solution

Accepted Solutions
sushil353
Master II
Master II

Hi,,

Try below:

=Concat(latitude&','&longitude,'|')

HTH

Sushil

View solution in original post

1 Reply
sushil353
Master II
Master II

Hi,,

Try below:

=Concat(latitude&','&longitude,'|')

HTH

Sushil