Reputation: 737
I want to divide all the numbers from A63 to A65 with the number in cell A61, and put the results in cells from B63 to B65
How can I achieve this?
Upvotes: 1
Views: 61
Reputation: 1
use in B63:
=INDEX(A63:A65/A61)
if you still want to drag it use:
=A63/A$61
Upvotes: 1