Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Qlik Connect 2026 Agenda Now Available: Explore Sessions
cancel
Showing results for 
Search instead for 
Did you mean: 
b_kotur
Contributor
Contributor

Parse XLS column from Excel file (Qlik Sense)

Hello,

I'm Loading an Excel table that has one column of XML type. How can I parse this column in the script to have just the desired value from it?

The column that would need parsing looks something like this: 

 <amount>0.035</amount>

The expected output is to have just 0.035 as the column value.

Many thanks for considering my request.

Labels (1)
1 Solution

Accepted Solutions
marcus_sommer

Maybe just: keepchar(Field, '0123456789.') as Field

- Marcus

View solution in original post

2 Replies
marcus_sommer

Maybe just: keepchar(Field, '0123456789.') as Field

- Marcus

b_kotur
Contributor
Contributor
Author

Thank you, Marcus, that worked great!