Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
paulyeo11
Master
Master

I need to recode GL_CODE 80020 to REVENUE , i get error

Hi All

I create below step for above mentioned :-

GL TDS Tab ::-

ApplyMap('MapGL',@1:16T,'OTHERS') as [GL_C9],

Map GL Tab :-

MapGL:
Mapping LOAD
[GL_CODE8],
[GL_CODE9]
FROM MapGL.xlsx (ooxml,embedded labels, table is [GL]);

I create a excel file Tab name GL :-

GL_CODE8 GL_CODE9
80020 REVENUE

I get below error :-

MapGL:
Mapping LOAD
[GL_CODE8],
[GL_CODE9]
FROM MapGL.xlsx (ooxml,embedded labels, table is [GL])

Paul

 

1 Solution

Accepted Solutions
Arthur_Fong
Partner - Specialist III
Partner - Specialist III

Try inserting '' for all columns that contains special characters:

@1:16T >> '@1:16T'

@58:77T>>'@58:77T'

@124:129T>>'@124:129T' etc

 

View solution in original post

2 Replies
Arthur_Fong
Partner - Specialist III
Partner - Specialist III

Try inserting '' for all columns that contains special characters:

@1:16T >> '@1:16T'

@58:77T>>'@58:77T'

@124:129T>>'@124:129T' etc

 

paulyeo11
Master
Master
Author

Thank you very much for your sharing .