Hi Flavio,
in record mode, the following formula produces an array containing all the elements of the record for the column in question.
row.record.cells['your column name'].value
OpenRefine does not have an array function min(), but we can use a sort() and select the first element:
row.record.cells['your column name'].value.sort()[0]
Perhaps a cleaner solution is to use Python/Jython instead:
array = row.record.cells['your column name'].value
return min(array)
In any case, the result will look like this:

You can then use an "Edit cells/Blank Down" to store the minimum value only once per record.
Hope this helps,
Ettore