• 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.

Formula to select the Lowest and Highest figures in a crow

Pasadu

Member
Sir, Please help me with a formula to select the lowest and highest figures in a precise row.
My excel version is Professional Plus 2016.
Thank You.
80681
 

Attachments

  • SELECT LOWEST AND HIGHEST.xlsx
    9.7 KB · Views: 9
Since "GHS" is a format, you can do it by the position of the columns.
=MIN(IF(MOD(COLUMN(D7:M7);2)=0;D7:M7;""))
=MAX(IF(MOD(COLUMN(D7:M7);2)=0;D7:M7;""))

80699

I believe you are on Excel 2016, so do confirm the formulae with CONTROL+SHIFT+ENTER.

EDIT:
or using the header line, it could be simply:
=MINIFS(D7:M7;$D$6:$M$6;"<>") // =MAXIFS(D7:M7;$D$6:$M$6;"<>")
 

Attachments

  • SELECT LOWEST AND HIGHEST.xlsx
    11 KB · Views: 6
Since "GHS" is a format, you can do it by the position of the columns.
=MIN(IF(MOD(COLUMN(D7:M7);2)=0;D7:M7;""))
=MAX(IF(MOD(COLUMN(D7:M7);2)=0;D7:M7;""))

View attachment 80699

I believe you are on Excel 2016, so do confirm the formulae with CONTROL+SHIFT+ENTER.

EDIT:
or using the header line, it could be simply:
=MINIFS(D7:M7;$D$6:$M$6;"<>") // =MAXIFS(D7:M7;$D$6:$M$6;"<>")
Thank you very much sir
 
Back
Top