Libreoffice calc 4.3.7.2 on Ubuntu 14.10
I have a VLOOKUP formula that when I copy and paste down the column, I get
=VLOOKUP(A3, G3:I80, 3, 0)
=VLOOKUP(A4, G4:I81, 3, 0)
=VLOOKUP(A5, G5:I82, 3, 0)
=VLOOKUP(A6, G6:I83, 3, 0)
The array reference, the 2nd parameter, changes as I go down the column. I need the array reference to stay the same, like
=VLOOKUP(A3, G3:I80, 3, 0)
=VLOOKUP(A4, G3:I80, 3, 0)
=VLOOKUP(A5, G3:I80, 3, 0)
=VLOOKUP(A6, G3:I80, 3, 0)
otherwise, obviously, the formula will be looking up to a different array of data in each cell.
How can this be done?