Marco,
Whenever I export the results to Excel, any records that have a leading/trailing spaces are trimmed.
Query:
Results from Query:
What it looks like in Excel:
Thanks.
Whenever I export the results to Excel, any records that have a leading/trailing spaces are trimmed.
Query:
Code:
select rpad(' ', level * 5) || 'Indent ' || (level * 5) example
from dual
connect by level <= 5;
Results from Query:
Code:
EXAMPLE
Indent 5
Indent 10
Indent 15
Indent 20
Indent 25
What it looks like in Excel:
Code:
EXAMPLE
Indent 5
Indent 10
Indent 15
Indent 20
Indent 25
Thanks.