Reputation: 11
I have a formula =$A$1... that I would like to change to =$A$2 as I drag it to the right or change to =$B$1 as I drag it down.
Is there a trick to do this? Is it possible?
Upvotes: 1
Views: 50
Reputation: 35915
You can use a formula like this
=INDEX($A$1:$C$3,COLUMN(A1),ROW(A1))
Upvotes: 5