Skip to main content
Announcements
Qlik Introduces a New Era of Visualization! READ ALL ABOUT IT
cancel
Showing results for 
Search instead for 
Did you mean: 
richardouellett
Creator
Creator

Load an Excel column with hyperlinks into QlikView?

Is it possible to load an Excel  column with hyperlinks into QlikView?  If yes can you direct me to an example or resource?

1 Solution

Accepted Solutions
settu_periasamy
Master III
Master III

I think we can't fetch the hyperlink details from the excel cell (as i know)

may be the workaround, you can simply put the below macro in your excel and get the hyperlink value in separate column..

Sub ExtractHL()

Dim HL As Hyperlink

For Each HL In ActiveSheet.Hyperlinks

HL.Range.Offset(0, 1).Value = HL.Address

Next

End Sub

source : How to extract a URL from a hyperlink on Excel

Load your fields..

LOAD dim,

    hyperlink

FROM

Book1.xlsx

(ooxml, embedded labels, table is Sheet1);

Create a chart

dim as your dimension

=dim & '<url>'&hyperlink  as your expression, representation should be Link..

-> You can hide your dim field if you don't want..

View solution in original post

3 Replies
settu_periasamy
Master III
Master III

I think we can't fetch the hyperlink details from the excel cell (as i know)

may be the workaround, you can simply put the below macro in your excel and get the hyperlink value in separate column..

Sub ExtractHL()

Dim HL As Hyperlink

For Each HL In ActiveSheet.Hyperlinks

HL.Range.Offset(0, 1).Value = HL.Address

Next

End Sub

source : How to extract a URL from a hyperlink on Excel

Load your fields..

LOAD dim,

    hyperlink

FROM

Book1.xlsx

(ooxml, embedded labels, table is Sheet1);

Create a chart

dim as your dimension

=dim & '<url>'&hyperlink  as your expression, representation should be Link..

-> You can hide your dim field if you don't want..

trdandamudi
Master II
Master II

As far as my knowledge it is not possible.

richardouellett
Creator
Creator
Author

Very helpful, thank you very much for the example!