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

Multiple Hyperlinks as comma separated values in straight table

Hi Friends,

I have requirement to show Multiple Hyperlinks as comma separated values in straight table so that end user will have the option to select which ever link he needs.

EG

Temp:

Load * Inline

[

AA,BB

1,2

1,4

3,5

];

LOAD AA,

Concat(BB,',')as T

Resident

Temp

Group by

AA;

here i get the output like

AA T

1    2,4

3    5

Now if I create hyperlink for T column it will treat 2,4 as a single value and but I need this to values as separate link to navigate

Hope you got my requirement

5 Replies
jagan
Luminary Alumni
Luminary Alumni

Hi Avinash,

It is not possible like this, instead you can display those 2 and 4 in two columns and assigns link to it.  In Table there is no way to assign multiple links for single cell.

Hope this helps you.

Regards,

Jagan.

avinashelite
Author

Hi Jagan,

Thanks a lot for the reply, Yes I knew this option but is their any work around except this ?

petter
Partner - Champion III
Partner - Champion III

I think the only option would be to develop an Object Extension to achieve it.

jagan
Luminary Alumni
Luminary Alumni

You can write your own extension and use it, and the disadvantage of this is it won't work in IE plugin and you have to create it using HTML, CSS, Javascript etc.

Other than this there is no way of achieving this.

Regards,

Jagan.