The calculation options work fine when not working in tables and work fine when only adding columns together in both. But if you subtract the second variable, it throws this error.
=SUM(Table.Column_1,-Table.Column_2)
The calculation options work fine when not working in tables and work fine when only adding columns together in both. But if you subtract the second variable, it throws this error.
=SUM(Table.Column_1,-Table.Column_2)
Try this in your Column 3 function
=(INDEX(Table.Column_1,ROW())-INDEX(Table.Column_2,ROW()))
Chad, while what I provided seems to make the calculations, I noticed that it still throws an error until you plug in the second number.
This one worked better for me, as it does not throw the error.
=SUM(INDEX(Table.Column_1,ROW()),-SUM(INDEX(Table.Column_2,ROW())))
Hey it works! I don't know what all the extra syntax means but that does fix the error. Thanks for your help!
Raul, I'm trying to do similar to Chad. Mine is a multiplication that I'm trying to accomplish, to give a subtotal to an order form. Screenshot is attached. I modified your SUM syntax to MULT and applied it to the "Line Cost" column. My attempted syntaxes are below.
=MULT(INDEX(Table.Quantity,ROW()),(INDEX(Table.Multiplier,ROW()))
=MULT((INDEX(Table.Quantity,ROW()),(INDEX(Table.Multiplier,ROW())))
=MULT(INDEX(Table.Quantity,ROW()),MULT(INDEX(Table.Multiplier,ROW()))
=MULT(INDEX(Table.Quantity,ROW()),-MULT(INDEX(Table.Multiplier,ROW()))
=MULT((INDEX(Table.Quantity,ROW()),MULT(INDEX(Table.Multiplier,ROW())))
I thought I understood the syntax, but obviously I'm grasping at straws. Any help you or anyone else can provide would be greatly appreciated.
Try this:
=PRODUCT(INDEX(Table.Quantity,ROW()),INDEX(Table.Multiplier,ROW()))
Also, make sure that your fields are set to "Number"
Raul, once I finally started thinking and realized that "table" needs to be the table variable I'm referencing, it worked like a champ. Both PRODUCT and MULT works. Thanks again!