Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
etrotter
Creator II
Creator II

Concat Function not Loading

Hey, my function is not working and I am not sure why, any ideas?

thanks in advance!

        MappingTable:

     Load

          concat('$(vTable)' & '.' & Field) AS FieldName,

             Rename

FROM [lib://AttachedFiles/FieldMap.xlsx]

(ooxml, embedded labels, table is $(vTable);

1 Solution

Accepted Solutions
sunny_talwar

Basically you don't need Concat to put two fields together... concat is used when you have to put values within a single field into a string...

View solution in original post

2 Replies
sunny_talwar

May be this

MappingTable:

Mapping

LOAD '$(vTable)' & '.' & Field as FieldName,

            Rename

FROM [lib://AttachedFiles/FieldMap.xlsx]

(ooxml, embedded labels, table is $(vTable);

sunny_talwar

Basically you don't need Concat to put two fields together... concat is used when you have to put values within a single field into a string...