This website Eurex Clearing - Clearing volume does not have any HTML tables but has data in lists. Is there still a way to pull this into Qlikview? Thanks.
Yes it is possible. I have done it by retrieving the entire HTML page as text. Then I use TextBetween() and other text functions to get the info I want.
The trick is to deselect HTML as format with the Web File wizard and choose FIXED as format. Then all the HTML text-lines will be retrieved into one field.
The load script will look like this:
ALLHTML:
LOAD
Concat(Line, Chr(13) & Chr(10) , R ) AS HTML // merge the table lines into a single field with linefeeds
// R is to get them concatenated in the right order.