Wednesday, March 17, 2010

Python Max Value

I did it! I have just found a nice way to extract the maximum field value from a bench of records previously selected. The trick is to build up a Python list L = [], where
I can append all the selected items L.append =(row.fieldname). Next I can run max(L)
to extract the maximum value.

.....

No comments:

Post a Comment