Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Join us in Bucharest on Sept 18th for Qlik's AI Reality Tour! Register Now
cancel
Showing results for 
Search instead for 
Did you mean: 
priyav24
Creator II
Creator II

How to append text before the real data?

Hello Everybody,

I have data Say

Flight

1

2

3

4

5

10..I want to append text before this data like

Flight

XX1

XX2

XX3

XX4

XX5

XX6

XX10

Thank in advance...

Regards,

priya

1 Solution

Accepted Solutions
er_mohit
Master II
Master II

a:

LOAD * Inline [

Flight

1

2

3

4

5

];

take dimension Flight

add expression

'XX' & Flight

View solution in original post

6 Replies
Not applicable

Hi priya

how about

1 as 'xx1'

2 as 'xx2'

or

'xx' + 1

regards

Petra

Not applicable

load

Flight & Flight1 as new_Flight

or

a:

LOAD * INLINE [

    Flight

    1

    2

    3

    4

    5

    10

];

LOAD 'xx' & Flight as n Resident a;

er_mohit
Master II
Master II

a:

LOAD * Inline [

Flight

1

2

3

4

5

];

NoConcatenate

LOAD 'XX' & Flight as Flight

Resident a;

DROP Table a;

priyav24
Creator II
Creator II
Author

I wanted to do something in expression

er_mohit
Master II
Master II

a:

LOAD * Inline [

Flight

1

2

3

4

5

];

take dimension Flight

add expression

'XX' & Flight

er_mohit
Master II
Master II

if it is correct as per your requirement then you have to mark it as correct answer to closed this thread. So that it might be helpful for other developer

Regards

Mohit