Function to give value of a BLANK cell based on another

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

HI
I'm using Excel 2003, I'm trying to write a function that will return the
value of a blank cell in cloumn 3 when cloumn 2 has the highest number
entered in it
B C
12
13
14 ( return data entered in this cell here)

I've tried different functions without success.
 
=INDEX(C:C,MATCH(MAX(B:B),B:B),0)

--
HTH

Bob Phillips

(replace somewhere in email address with gmail if mailing direct)
 
your statement is confusing, what do you mean by [return the value of a
blank cell], what I have guessed is that you want to return the highest
value of col B in col C
suppose you data in col B is in the range of B1:B50 then in col c put
following function to show in col C the highest value.
=IF(B1<LARGE($B$1:$B$50,1),"",B1) try this function for your purpose or
elaborate your question.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top