Not by itself..
You would use Max/Min in combination with MATCH to find the row number..
In a cell formula, it would be like this
=MATCH(MAX(A:A),A:A,0)
Important to note, that match technically is not returning the row #.
It's returning the position # within the array A:A.
When the array is A:A, or at least begins in row 1 like A1:A10, then yes it happens to be the same as the row #.
But if the array is say A15:A30, and the Max value is in say A20, then the Match returns 6 (A20 is the 6th position in A15:A30)
Hope that helps.