Excel function help

M

Mike H

Corey,

Perhaps you could express in words what your trying to do because this bit
of your formula doesn't really make sense.

=IF(39752>=Sheet2!D3>=39722

Mike
 
S

Sean Timmons

you should use an AND instead.

=IF(AND(39752>=Sheet2!D3,Sheet2!D3>=39722),Sheet2!A3,0)
 
D

Dave Peterson

You'd want to use =and():

=if(and(sheet2!d3>=39722,sheet2!d3<=39752),sheet2!a3,0)

If those numbers are really dates, I'd use:
=if(and(sheet2!d3>=date(2008,10,1),sheet2!d3<=date(2008,10,31))sheet2!a3,0)

or even:
=if(text(sheet2!d3,"yyyymm")="200810",sheet2!a3,0)
 
C

Corey

I want to display a cell on row 3 when a second cell in row 3 is within a
certain range. for example, i want to dis play A3 when B3 is greater than 4
and less than 8.
 

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

Similar Threads


Top