Reputation: 113
I don't use Excel very often. I have D3=C3-L(600+B3*200)
in my program which doesn't work. I would like to assign this expression the meaning of "D3 equals sum of C3 and the cell in column L with the row number (600+B3*200)". (B3*200 being natural is accounted for in my Excel program). Which functions should i employ? Thanks!
Upvotes: 0
Views: 136
Reputation: 55
=C3+INDEX(L:L,600+(B3*200),1))
Index returns the value of a given reference intersection.
Upvotes: 0