The script below works properly to populate a data table with string items chosen from a list (A to I). However, when I change "A-I" items to mor complex string, for example "Change process based on study results", the script does not poulate the datatable properly (does not transfer at all). Is the "Concat Items" only working properly with simple characters? Or is the problem somewhere else? Thanks for any input!
srimprvTypes = {
"A",
"B",
"C",
"D",
"E",
"F",
"G",
"H",
"I"
};
New Window("Performance Summary Input: Related Improvements",
<<Modal,
<<Size(600, 300),
Panel Box("Improvement based on results",
cb48 = Check Box(srimprvTypes),
Border Box(top(10))
),
Border Box(Left(1), Right(5), Top(15), Bottom(5),
Button Box("OK",
selectedItems = cb48 << Get Selected;
srimprvText = Concat Items(selectedItems, ", ");
dt[1, 52] = srimprvText;
)
)
);