Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi all,
I have a data in excel with the column name
Number
1
2
3
4
5
6
so I want to load this in qlik result as
1 --one
2 -- two
3 -- three
----- like so on..
Here you have to do the Mapping Load is best option
MapTab:
Mapping Load * inline
[
Number,NumToText
1,one
2,two
3, three
];
Load *,applymap('MapTab',Number,'None')
Load * inline
[
Number
1
2
3
4
5
6
];
see this
Here you have to do the Mapping Load is best option
MapTab:
Mapping Load * inline
[
Number,NumToText
1,one
2,two
3, three
];
Load *,applymap('MapTab',Number,'None')
Load * inline
[
Number
1
2
3
4
5
6
];
thanks all. good example anand
If you have fixed numbers then you can go with approach suggested by the Anand, but if your numbers are dynamic then you need to go with different approach suggested by me & Tresesco
Thanks If you have more numbers like in 1000+ then go with Marcus Suggestion.
its fixed numbers I have only 15 in my excel. thanks for the explanation
Okay anand thanks.