I am trying to divide a field in a table by another field within the same table. Unfortunately, no luck! Below is the formula I am using:
=IDIV(INDEX(Table_1. Field_A, ROW(1)), INDEX(Table_1. Field_B, ROW(1))
I am trying to divide a field in a table by another field within the same table. Unfortunately, no luck! Below is the formula I am using:
=IDIV(INDEX(Table_1. Field_A, ROW(1)), INDEX(Table_1. Field_B, ROW(1))
Oh, you're missing a close parenthesis at the end in your calculation above
Is that formula inside the table in the same row as the two inputs? Or outside the table?
For inside the table in the same row, just use ROW() not ROW(1) which will perform the calculation on inputs in the same row as the calculation.
If the formula is outside the table, don't use ROW(1), just use 1 to denote the first row.
Yes, both fields are on the same row (Actually there is only 1 row).
I first had it with "ROW()" but that didn't work either.
If the formula is in the third column of the table, use
=IDIV(INDEX(Table.Num1,ROW()),INDEX(Table.Num2,ROW()))
If the formula is in a field outside of the table, use
=IDIV(INDEX(Table.Num1,1),INDEX(Table.Num2,1))
Oh, you're missing a close parenthesis at the end in your calculation above
That did it thank you!!!!