06-29-2008 06:44 PM
06-29-2008 11:59 PM
06-30-2008 04:27 PM
06-30-2008 04:47 PM
06-30-2008 05:12 PM
06-30-2008 11:59 PM
MaxMin1D returns only one maximum and one minimum in your set of data and there is no possibility to detect the others with this functions.
Since your data are already stored in a table you could exploit table sorting facility to accomplish your task: sort the table based on one column and read the first and last lines to detect all the maximums and all the minimums. Since sorting the table you loose original order of your data, you may need to create an additional column that ramps up from 1 to number-of-rows so that the index of interesting cells can be detected and you can resort the table in original order after you have finished handling your data. This process can be repeated on the other columns.
I suggest that you make another control the active one and hide the table while doing this, as this may speed up the process a lot. Alternatively you could duplicate the table and work on the duplicated (hidden) one thus leaving original control untouched.