I am trying to get the name of a field that contains the maximum value across several rows. Getting the maximum number is easy, I would just use max(a, b, c...). But I would like the field name of that is associated with each high value. Example:
So max in python would give me
34
19
22
But what I want is
F2
F1
F3
Any suggestions?