I use the following function to perform a conditional operation on a List:
consider[data_, conditionCOL_, conditionVAL_, listOfCol_] :=
Select[data, (#[[conditionCOL]] == conditionVAL) &][[All, listOfCol]]
Considering the following example :
dalist = Join[Tuples[Range[4], 2]\[Transpose], {Range[16], Range[17, 32, 1]}
]\[Transpose];

I use the following to obtain the means of specific columns defined by the function. This will output the means of entries of column 3 & 4 for which the corresponding entry in column 1 equals 2
Mean@consider[dalist, 1, 2, {3, 4}]

Now, I would like to add constraints/thresholds on the values to be averaged :
Average the values when they are:
- Above minValue (e.g., 3)
- Under maxValue (e.g., 25)
Below, an example is given of values the average value of which should be calculated under the above mentioned constraints.

Selectstatement, alone, returns exactly what your looking for, asMapThread[{#1, #2}&, ...]andTransposeare exact inverses of each other. – rcollyer Jun 8 '11 at 16:05{conditionCOL, conditionVAL}={1,1}. What filtered average would you expect from that? There are two ways to interpret it: both columns must meet the filter criteria, which gives an avg of{4,20}, or each column is filtered independently which gives an avg of{4, 37/2}. The current answers give the former result, while I suspect you wish the latter. – rcollyer Jun 9 '11 at 21:46