SyntaxFix
Write A Post
Hire A Developer
Questions
Assuming your row number is in B1, you can use INDIRECT:
B1
INDIRECT
=INDIRECT("A" & B1)
This takes a cell reference as a string (in this case, the concatenation of A and the value of B1 - 5), and returns the value at that cell.
A