Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi
I have a column name RECORDED
which is a free text column
When i had loaded it in qlikview
I saw many white spaces or blanks in List box
Example
Recorded
A
B
C
D
E
Present output:
A
B
C
D
E
It has five white spaces or blanks and then data
Required output:
A
B
C
D
E
One blank and remaining data
I need only one blank and remaining data in that column
Thanks in advance.
May be this
If(Len(Trim(RECORDED)) = 0, ' ', RECORDED) as RECORDED
Example:
LOAD * Inline [
Recorded
A
B
C
D
E];
Concatenate
LOAD * Inline [
Recorded
''];
Could you provide a sample to look into the issue?
you can provide sample data