Conditional formula

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

Guest

I need to apply a formula to a cell which uses the value from another
cell...... ok so far! The problem is the formula can be different depending
on the value of that other cell.

i.e if the cell value of A1 is <50000 i need to apply formula x
if the cell value of A1 is >50000 but <100000 i need to apply formula y
if the cell value od A1 is >100000 i need to apply formula Z

Can anyone guide me to the correct method to apply this formula?

Thanks in advance
 
=IF(A1<50000,x,IF(A1<100000,y,z))

Substitute x, y and z with your formula

Mangesh
 
=IF(A1<50000,FormulaX,IF(A1<100000,FormulaY,FormulaZ))

HTH,
Bernie
MS Excel MVP
 

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