Hello, I am trying to make a calculations sheet that will build a estimate based on input from another sheet. I have a helper reference row that actually grabs the input of a form on the origin sheet, and am using INDEX to reference the information from that row, and then multiply it by input on the same sheet. This worked perfectly fine when all the calculations were done on the same row, but whenever I tried to expand to the next column for ease of reading from the person looking at it, the index function returned a circular reference error. I think I have a workaround, but I figured I would ask here if anyone could help as the workaround would be mildly visually displeasing.
Below is the formulas I used and an image reference.
=VALUE(INDEX([1]:[1], 2) * (INDEX(Values:Values, 3))) —- This formatting worked for Items A>C, but caused an error on D
=VALUE(INDEX([4]:[4], 2) * (INDEX(Values:Values, 6))) —- Item D's
My confusion is that the total formula didn't seem to cause a problem despite also being on a different column.
=VALUE(INDEX([2]:[2], 6) + (INDEX([4]:[4], 6) + (INDEX([6]:[6], 6)))) —- Formula for Total