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: 
Anonymous
Not applicable

how to change field format

Dear All

I have a field as mentioned below:

Recommend dealer

1) Probably Would

2) Definitely Would

3) Probably Would Not

4) Definitely would not

I want this in below format:

Recommend make 1) Probably Would 2) Definitely Would 3) Probably Would Not 4) Definitely would not

How to achieve this?

7 Replies
YoussefBelloum
Champion
Champion

Hi,

your field is called Recommend dealer ?


and you have 4 lines, like this ?

1) Probably Would

2) Definitely Would

3) Probably Would Not

4) Definitely would not


you want to concatenate the lines on one lines like this ?


Recommend make 1) Probably Would 2) Definitely Would 3) Probably Would Not 4) Definitely would not


Anonymous
Not applicable
Author

yes

tresesco
MVP
MVP

Try like (in a textbox):

='Recommend make '&Concat(Distinct [Recommend dealer] , ' ')

Anonymous
Not applicable
Author

output shud be

1) Probably Would 2) Definitely Would 3) Probably Would Not 4) Definitely would not

YoussefBelloum
Champion
Champion

use this

'Recommend make '&concat([Recommend dealer],' ') as new

Find attached:

Anil_Babu_Samineni

Front end / Backend?

Best Anil, When applicable please mark the correct/appropriate replies as "solution" (you can mark up to 3 "solutions". Please LIKE threads if the provided solution is helpful
Anonymous
Not applicable
Author

=concat([Recommend dealer],chr(32)) // UI.

//script

Load concat([Recommend dealer],chr(32)) as [Recommend dealer];
load * inline [
Recommend dealer

1) Probably Would

2) Definitely Would

3) Probably Would Not

4) Definitely would not
]
;