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

Announcements
Discover how organizations are unlocking new revenue streams: Watch here
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

How to remove enters in fields

I have a field in excel as below.

'Safety and security features

(e.g. seatbelts, ABS, airbags, immobilizer, parking sensor, etc.)'

I want to remove enters while loading in qlikview...output should be

'Safety and security features (e.g. seatbelts, ABS, airbags, immmobilizer, parking sensor, etc.)'

how can it be done...

4 Replies
varshavig12
Specialist
Specialist

=PurgeChar(FieldName,chr(10))

Anil_Babu_Samineni

Confusing, Would you elaborate more. You have row level values. Can you explain Values again with Dum Data

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

ques.jpg

there is a enter after 'features'  I want a backspace so that output could be

Safety and security features (e.g. seatbelts, ABS, airbags, immmobilizer, parking sensor, etc.)' while loading in qlikview

MindaugasBacius
Partner - Specialist III
Partner - Specialist III

LOAD Replace(A, Chr(10), ' ') as A

FROM

(ooxml, explicit labels, table is Sheet1);

The result:

Screenshot_1.jpg