Need to do a sum with multiple conditions. 1st condition is column W equals "Open" then second condition is a calculation of Column F is date is 20 days or more before todays date. I need to sum column E for those totals in which both conditions are true. My range is row 3 through row 500 for each.
Row Column E Column F Column W
# Amount Funded Date Funded Status
3 100,000.00 12-3-02 Pending
4 85,000.00 2-10-03 Open
5 65,000.00 1-15-03 Open
6 110,000.00 12-15-02 Open
Using 2-13-03 as todays date, My total should be $175,000. Since the date of row 4 is 2-10-03 it should be excluded from my calculation. Row 3 should also be excluded because status is Pending and not Open.
Row Column E Column F Column W
# Amount Funded Date Funded Status
3 100,000.00 12-3-02 Pending
4 85,000.00 2-10-03 Open
5 65,000.00 1-15-03 Open
6 110,000.00 12-15-02 Open
Using 2-13-03 as todays date, My total should be $175,000. Since the date of row 4 is 2-10-03 it should be excluded from my calculation. Row 3 should also be excluded because status is Pending and not Open.