Forum Discussion

NV's avatar
NV
Copper Contributor
Aug 09, 2022
Solved

Iterate and print Min and Max numbers in dynamic range

Hi,       I've set of values in the attached excel (i.e. A to E).  Using the data, i prepared column F to differentiate blank or non blank cells.  Now, i wanted to print the min/max numbers from th...
  • HansVogelaar's avatar
    Aug 09, 2022

    NV 

    You mentioned "So i need the Min&Max value of all the data between B7:E10". E contains duplicates of columns to the left, so I omitted it. Now you want A to D...

     

    In G2:

    =IF($E2="","",MIN(INDEX($A:$A,MAX(IF($E$1:$E1<>"",ROW($E$1:$E1)))):INDEX($D:$D,MAX(IF($E$1:$E2<>"",ROW($E$1:$E2))))))

    In H2:

    =IF($E2="","",MAX(INDEX($A:$A,MAX(IF($E$1:$E1<>"",ROW($E$1:$E1)))):INDEX($D:$D,MAX(IF($E$1:$E2<>"",ROW($E$1:$E2))))))

    These formulas look at columns A, B, C and D, not just A and D.

Resources