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

POSITION OF CELL VALUE IN A RANGE

pucha

Member
POSITION OF CELL VALUE IN A RANGE.

I WANT TO KNOW WHETHER THE OPEN PRICE IS IN "OVERSOLD ZONE" OR IN "OVER BOUGHT ZONE".

THANKS

PUCHA
 

Attachments

  • SAMPLE_PUCHA.xls
    62.5 KB · Views: 5
I would add a helper column G which has the Over Bought/Over Sold values in each cell
then use a formula: =INDEX(G4:G100,MATCH(R52,K4:K100,-1),0)
see attached file:
 

Attachments

  • SAMPLE_PUCHA.xls
    69 KB · Views: 6
Another option without helper.

1] Fill empty cell H37 with "Fourth High" or other wording

2] In R53, enter formula :

=INDEX(LOOKUP(ROW($K$4:$K$100),ROW($K$4:$K$100)/($H$4:$H$100>0),$H$4:$H$100),MATCH(R52,K4:K100,-1),0)

3] See attached file

Regards
Bosco
 

Attachments

  • SAMPLE_PUCHA(1).xls
    66 KB · Views: 10
Thank you very much Mr. Hui. for solving the problem.

and I also thanks to Mr. Bosco for doing it by another method. Both the methods are working.

With Respect & Regards to both of you,
Thanks
Pucha
 
Back
Top