• Hi All

    Please note that at the Chandoo.org Forums there is Zero Tolerance to Spam

    Post Spam and you Will Be Deleted as a User

    Hui...

  • When starting a new post, to receive a quicker and more targeted answer, Please include a sample file in the initial post.

Lookup formula

Rodrigues

Member
Hi All
I would like a formula to do the following:

Look on all values from entire column B and display on cell D1 onwards (E1, E3,etc) by the smallest number.
Could someone help me with this, please?
Thanks R
 

Attachments

  • Test.xlsx
    8.4 KB · Views: 13
Excellent thanks.
Sorry to be a pain forgot to ask that, how to avoid duplicate values.
Normally I use "<>" or "<>0" but can't make it work.
Help please?
Thanks
R
 
Hi,

Use the below

AGGREGATE(15,6,IF(FREQUENCY($B$1:$B$9,$B$1:$B$9)>=1,$B$1:$B$9),COLUMN(A1))

To be acknowledged with Ctrl + Shift + Enter

See the attached for ref
 

Attachments

  • Test_Rodriguez.xlsx
    9.1 KB · Views: 7
Last edited:
Yes, such is the array-capability of FREQUENCY that not only do you not require CSE, you don't even require AGGREGATE.

=SMALL(IF(FREQUENCY($B$1:$B$9,$B$1:$B$9),$B$1:$B$9),COLUMNS($A:A))

without CSE, will work just fine.

Regards
 
Hello friends,

Another one,
=AGGREGATE(15,6,$B$1:$B$9/($B$1:$B$9>D2),1)

Cell D2 should be empty, and drag to the right.

David
 
Back
Top