I have a script that opens a .txt file and is adding a column that categorizes that set of data with by asking user to enter a string to categorize it. The file will be later joined with other files. I cannot seem to pass the string into all rows for the new column.
Once file is open:
New Window ("New Window",
<
categorytextbox = Text Edit Box ( "Enter category here" ),
Button Box ( "OK" ),
);
::category = category << get text;
new column(
"Category",
Character,
Nominal,
Formula (::category),
);
Any help is appreciated. I've tried using Set Values function instead of formula with no success.