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

Remove carriage return

I have some data in excel

as

COMPLETE
ECR-0001479
COMPLETE
ECR-0002435
COMPLETE
ECR-0002780
COMPLETE
ECR-0003223
COMPLETE
ECR-0003670

where there is carriage return(Alt+enter) in the values.

Any idea how to remove it via subfield.....

Regards

Nitin

1 Solution

Accepted Solutions
giakoum
Partner - Master II
Partner - Master II

LOAD Replace(DATA, Chr(10), ' ') as data

FROM

C:\Users\user\Downloads\sample1.xls

(biff, embedded labels, table is [Sheet1$]);

View solution in original post

3 Replies
giakoum
Partner - Master II
Partner - Master II

Could you please post a sample excel file?

Anonymous
Not applicable
Author

PFA the sample excel file

giakoum
Partner - Master II
Partner - Master II

LOAD Replace(DATA, Chr(10), ' ') as data

FROM

C:\Users\user\Downloads\sample1.xls

(biff, embedded labels, table is [Sheet1$]);