Hi,
I have a script in which I open my data tables using open(file, invisible), and then manipulate the file. This used to show the files in the home window but that doesn't seem to be working anymore. When I change it to private the files show up in the homw window but isn't it supposed to be the other way around? Also, when I remove the Import Settings the invisible seems to work just fine, can anyone see what I'm doing wrong?
if(z == "Multiple",
dt = Open(x, invisible,
Import Settings(
Column Names Start( 2 ),
Data Starts( 3 )
)
),
dt=Open(x, invisible,
Import Settings(
Column Names Start( 2 ),
Data Starts( 3 )
)
)
);