Other option
Names Default To Here(1);
dt = Data Table("Untitled");
dt << New Column("Col", Character, Nominal);
test_cols = Filter Each({colname}, dt << Get Column Names("Continuous", "String"), Starts With(colname, "Test "));
For Each Row(dt,
idx = Max(Loc(dt[Row(), test_cols]));
If(idx >= N Items(test_cols),
:Col = "Pass"
,
:Col = test_cols[idx];
);
);
-Jarmo