Skip to main content
Announcements
Introducing Qlik Answers: A plug-and-play, Generative AI powered RAG solution. READ ALL ABOUT IT!
cancel
Showing results for 
Search instead for 
Did you mean: 
qlikview979
Specialist
Specialist

Data

Hi Experts,

I have one field in excel name like " DATA" in that field data like  this

Data

1,2,3,4,5

Expected Output:-

Data

one,two,three,four,five

is it possible?

4 Replies
tresesco
MVP
MVP

Possible. Can you give a bit more detail, like:

-Max number you would have in such data

-Max length of such string

in your real data set ?

arulsettu
Master III
Master III

may be like this

Pick(Match(DATA,1,2,3,4,5),'one','two','three','four','five')

qlikview979
Specialist
Specialist
Author

Hi All,

By using Mapping Or Pick . How can we get that ?

regards,

Mahesh

tresesco
MVP
MVP

Try like:

MapTab:

Mapping Load * Inline [

Num, Word

1, One

2, Two

3, Three

4, Four

5, Five];

Load

  Concat(InWord,',') as InWordFinal;  // This will give you single line output

Load

  *,

  ApplyMap('MapTab',NumSeparated) as InWord;

Load

*,

SubField(Num,',') as NumSeparated Inline [

Num

1,2,3,4,5

]  (delimiter is ':');