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

Announcements
Talend Cloud AWS EU Scheduled Outage: Starting Tues 26 May 21:00 CEST with expected completion Wed 27 May 01:00 CEST
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

How to turn fieldvalue into fieldname

I have an extraction from a xml table it's an additional extension to the invoice line

LOAD

  %Key_InvoiceLine_34EEBAB39911A0D4,  // Key to parent table: Invoice/InvoiceLine

  Name,

  Value

FROM $(path) invoice;

delivers

%Key_InvoiceLine_34EEBAB39911A0D4NameValue
101UitgeverFACTURATIE
101OpdrachttypeLeveren normale koop
101VoorwaardeAIF
101BoeksoortA
150UitgeverFACTURATIE
150OpdrachttypeLeveren normale koop
150VoorwaardeDUD
150BoeksoortA
199UitgeverFACTURATIE
199OpdrachttypeLeveren normale koop
199VoorwaardeDIO
199BoeksoortS


What i need is 1 row/key

how do i manage this


Thanks and regards

Lidia NL


Labels (1)
1 Solution

Accepted Solutions
hic
Former Employee
Former Employee

Generic

Load %Key_InvoiceLine_34EEBAB39911A0D4, Name, Value From Table ...;

HIC

View solution in original post

2 Replies
hic
Former Employee
Former Employee

Generic

Load %Key_InvoiceLine_34EEBAB39911A0D4, Name, Value From Table ...;

HIC

Not applicable
Author

Tnx

how simple it can be,