Hi All, I am working a staffing calculator that will project staffing needs based on various criteria. One of them will be to sum days worked for conferences. The user should enter a date range of the conference and a formula will sum those days - this is easy enough. However, what I want to do is to create a formula that will look for a date range within the cells, and then sum those total days for that date range. For example, rows 2 and 5 are within the date range of March. The rest are not. How can I get the formula to sum only the cells for the date range in question? Will I have to use VBA? I tried working with the following formula, but obviously it will sum all days... Thanks in advance.
Code:
=IF(ISBLANK('2010 Conferences'!B:C),"",IF(OR('2010 Conferences'!B:B>1/7/2011,'2010 Conferences'!B:B<31/7/2011),SUM('2010 Conferences'!E:E),""))
Last edited: