Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
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
LOAD Replace(DATA, Chr(10), ' ') as data
FROM
C:\Users\user\Downloads\sample1.xls
(biff, embedded labels, table is [Sheet1$]);
Could you please post a sample excel file?
PFA the sample excel file
LOAD Replace(DATA, Chr(10), ' ') as data
FROM
C:\Users\user\Downloads\sample1.xls
(biff, embedded labels, table is [Sheet1$]);