I have got a column of numbers in Calc. How do I get the row number of the maximum?
Just
=MATCH(MAX(<column>);<column>;0)
For example for column A it will be
=MATCH(MAX(A:A);A:A;0)
Note - this will be the number of the first line with this value (if you have several identical values, then the formula returns the first one)