cell refrence based on specific criteria

J

Jenn

I am trying to refrence a specific cell based on set criteria.
I have a cell with a current calcualtion. I am then wanting to find out
what cell is associated with that number, for example I have ratios running
along side a ratio count column (1, 2, 3, 4 and so on).
In my new cell I'm trying to say if the count ='s the value in my current
calculated cell, then this cells value is the ratio associated with that
count column.
 
S

Sean Timmons

so, if your variable is in, say, cell C1 and your formula is in cell D1 with
your ratio column along column A and result column in B, you can put into D1:
=vlookup(C1,A:B,2)

This wil lreturn the nearest value from the column, so if C1 is 2.3, you'll
get the value from your 2 column. If you don't want nearest match, only
exact, then: =vlookup(C1,A:B,2,FALSE)

HTH!
 
J

Jenn

In Cell C7 I have a calculation.
In Row E I have a range from 1 to 4034 (this may change depending on my data
set ex. 1-50 or 1-60000)
In Row F I have ratios that correlate with the range 1 to 4034.
I would like to create a calcuation that will correlate cell c7(number may
be 1 through 4034) to row f (my ratio), based on the numbers listed in row e
(numbers 1 to 4034).
 

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

Top