Trying to produce a value if a date falls within a specified date range (4/9/2010 to 4/22/2010). Any date outside of that range would produce a 0 (or return nothing).
This is my formula, but obviously the value in D10 will display on any date before 4/9/10 and after 4/22/2010, which I do not want. I added logical tests for any date prior to 4/9/2010 and after 4/22/2010 to produce a 0, but got an error that I had too many logical tests for this function.
=IF(E6>=DATE(2010,4,9),D10,IF(E6<=DATE(2010,4,22),D10))
Solution?
This is my formula, but obviously the value in D10 will display on any date before 4/9/10 and after 4/22/2010, which I do not want. I added logical tests for any date prior to 4/9/2010 and after 4/22/2010 to produce a 0, but got an error that I had too many logical tests for this function.
=IF(E6>=DATE(2010,4,9),D10,IF(E6<=DATE(2010,4,22),D10))
Solution?