Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi - I have the text as below.
Key Accomplishment
1.ABC
2.DEF
3.GHI
but when it is loaded it shows as below.
Key Accomplishment 1.ABC. 2.DEF 3.GHI
How can I display with 1.2.3 like the original text ?
load * inline [Key. Accomplishment
1.ABC
2.DEF
3.GHI] (delimiter is '.');
you need Chr(10) for a line break. do this:
Load Rowno() as Dim,
'1. ABC' & Chr(10) & '2. DEF' & Chr(10) & '3. GHI' as meas
AutoGenerate 1;
load * inline [Key. Accomplishment
1.ABC
2.DEF
3.GHI] (delimiter is '.');
As @ChannaK said, you have to use delimiter is '. ' in your load script