I have a very simple formula to get the sum of values in a row:
=SUM(K5:P5)
However, K5 to P5 is the first row in a named range, and I would prefer to reference the named range, so I change it to:
=SUM(INDEX(S2ScoresTotUnitQ1,Row("A1"),0))
But I get a "we found a problem with this formula error". How do I reference individual rows of my named range without getting an error?