I need a formula like this "@if(2000<page2:D3,(page2:d5),@if(2000.

G

Guest

I look for some one help me in develop this formula for excel.

=IF(Sheet2!D8<2000,(Sheet2!D10),IF(2000<Sheet2!E8<17000,(Sheet2!E10),IF(17000<Sheet2!F8<30000,(Sheet2!F10),IF(30000<Sheet2!G8<50000,(Sheet2!G10),IF(Sheet2!H8>50000,(Sheet2!H10),(0))))))
 
J

JulieD

Hi

i think this will work
=IF(Sheet2!D8<2000,Sheet2!D1,IF(AND(Sheet2!E8>2000,Sheet2!E8<17000),Sheet2!E10,IF(AND(Sheet2!F8>17000,Sheet2!F8<30000),Sheet2!F10,IF(AND(Sheet2!G8>30000,Sheet2!G8<50000),Sheet2!G10,IF(Sheet2!H8>50000,Sheet2!H10,0)))))

Cheers
JulieD
 
G

Guest

Take a look in the help file at the VLOOKUP(), HLOOKUP(), & LOOKUP()
functions. One or more of them will do exactly what you want.
 

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