Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
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
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
Hi Marko
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
thanks a lot, it seems that this default changed as some point
(it really gave me a headache why this happens)