Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
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?
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
yes
Try like (in a textbox):
='Recommend make '&Concat(Distinct [Recommend dealer] , ' ')
output shud be
1) Probably Would 2) Definitely Would 3) Probably Would Not 4) Definitely would not
use this
'Recommend make '&concat([Recommend dealer],' ') as new
Find attached:
Front end / Backend?
=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
];