Hi,
I have a table that has thousand of columns. I want to use column matrix to find if across a range of columns is missing.
I first identify the starting of the first column number using Loc().
allcol = dt << get column names(string);
colname = column ("starting column") << getname;
colnumber = (Loc(allcol ,colname))[1];
then I want to find if the columns from colnumber till ncol() is missing. something like below but it failed. can someone point me how I can make it right ?
dt << select where (ismissing(column()[colnumber :: ncol()]))