This is probably laughably simple but I'm brand new to scripting...
I have written a script that manipulates a data table. That all works fine. Right now it just operates on the current data table.
What I would like to have it do is actually import the raw text file as the first step when I run the script. However, I want to be able to select which file I'm importing and I want the script to automatically apply certain arguments to the table. I can just use:
open();
but then I need to select which columns to import, select character types, etc. I would like to have the script do those things automatically each time. So I want to include arguments that are the same each time but don't want the file path/name to be the same each time. Any ideas?
Thanks.