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

mapping table

Hi All,

I have a mapping table that I would like to map some values (which are in another table) to. Any suggestions on the best way?

Thank you Herbert

1 Solution

Accepted Solutions
daveamz
Partner - Creator III
Partner - Creator III

Hi,

MapTable:

Mapping

Load Value,

        Map To Value

from Mapping Table2.xlsx ...

LOAD *, ApplyMap('MapTable, Value) as MappedValue

....

Regards,

David

View solution in original post

4 Replies
daveamz
Partner - Creator III
Partner - Creator III

Hi,

MapTable:

Mapping

Load Value,

        Map To Value

from Mapping Table2.xlsx ...

LOAD *, ApplyMap('MapTable, Value) as MappedValue

....

Regards,

David

Not applicable
Author

hi

you can try

ValueMap:

mapping load

Value,

MapValue

From  XXX;

then on the Main table for the field.

Data:

Load

value,

ApplyMap('ValueMap',Value) as MapValue

From XXX2

or resident  XXXX2

thanks

Michael

Not applicable
Author

Thank you

Not applicable
Author

cool anytime...