Skip to main content
Announcements
Have questions about Qlik Connect? Join us live on April 10th, at 11 AM ET: SIGN UP NOW
cancel
Showing results for 
Search instead for 
Did you mean: 
marko_rakar
Creator
Creator

Difference in how load script is formated in script editor

hello

In the past, when I tried to import new table and used "table files" function, I would end up getting neatly listed fields in my scrip editor, something like this:

Directory;

LOAD @1,

     @2,

     @3,

     @4,

     @5,

     @6,

     @7,

     @8,

     @9,

     @10

Each field would get new row.

But now (I guess from version 12) I get following:

Directory;

LOAD @1, @2, @3, @4, @5, @6, @7, @8, @9, @10

How can I revert this so I get old format (old format is much nicer, I get full overview, it is easy to comment of one of the fields)?
The way it is done now is hardly readable and quite messy to intervene into the load script.

p.s. there is a chance I have messed up some preference but I can not find which one

1 Solution

Accepted Solutions
Peter_Cammaert
Partner - Champion III
Partner - Champion III

In the last tab of the Table Import wizard, set the value of Max Line Length to 1. That will force the script editor to place each field on a new line.

See also here: Re: Why does the Scripting comes Horizontally?

Best,

Peter

View solution in original post

3 Replies
el_aprendiz111
Specialist
Specialist

Hi Marko

column.gif

Peter_Cammaert
Partner - Champion III
Partner - Champion III

In the last tab of the Table Import wizard, set the value of Max Line Length to 1. That will force the script editor to place each field on a new line.

See also here: Re: Why does the Scripting comes Horizontally?

Best,

Peter

marko_rakar
Creator
Creator
Author

thanks a lot, it seems that this default changed as some point

(it really gave me a headache why this happens)