Manipulating Summary Tables and Column Addition
Hi,I have two quesitons:1) How could I go about summing the values of a row between two columns. I found the snipet of code below, but it simply copies the 5th value and puts in in the new row. For each row, I want all values between the 5th row and the nth column of TR to be added. TotRow = dt << Get Column Names( Numeric ); TR = N Items( TotRow ); dt << New Column( "Total", Numeric ); For Each ...