How to SUM rows with variable column names?
I have a table with a variable number of columns. I want to add a column that SUM's all of the columns in a row no matter how many / few appear.I tried this:TotRow = Trans << Get Column Names(Numeric); TR = N Items(TotRow); Trans << New Column( "Total Time", Numeric); For Each Row(:Total Time[]=Sum(Column(TotRow[1::TR])[])); But it only SUMS the first row and not the rest. The number of colum...
