Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
I have field with ID values which is comma separated like 1.5,7,10. I need to replace the ID values with names like USA, Canada, Australia, Singapore. How can i do this in load script?
Hi @Vijaikrishna
Try like below
MappingLoad * Inline[ID, Country1,USA5,Canada7,Australia10,Singapore];
Load Concat(Ctry, ',', ID) as Ctry;Load ApplyMap('MapCtry', SubField(ID, ',')) as Ctry, ID Inline[ID"1,5,7,10"];
Replace with inline with ursource.