Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
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.
Maybe just: keepchar(Field, '0123456789.') as Field
- Marcus
Thank you, Marcus, that worked great!