Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Transform fieldvalue to fieldname

Hello,
I need to transform a table. The values in the column "name" should become columns and the corresponding values in the column "value" should become the values of the newly created column.
Example:
from:
KEYnamevalue
VOR-63dringlichkeitmittel
VOR-63enddatum31.12.2013
VOR-63grösseHoch
VOR-63kontextHIN
to:
KEYdringlichkeitenddatumgrössekontext
VOR-63mittel31.12.2013HochHIN

any ideas?

thanks,

Marcel

1 Solution

Accepted Solutions
Not applicable
Author

tab:

LOAD Key,

     Name,

     Value

FROM table;

Generic LOAD Key, Name,Value    Resident tab;

View solution in original post

4 Replies
Not applicable
Author

try to use

Generic load

Not applicable
Author

tab:

LOAD Key,

     Name,

     Value

FROM table;

Generic LOAD Key, Name,Value    Resident tab;

Not applicable
Author

see attachement

Not applicable
Author

many thanks for the correct and fast answer!