Conditional Formula Needed

fishin

Board Regular
Joined
Jan 18, 2009
Messages
184
Completion Dates appear in column Y13 thru Y298. Cells are formatted as: “Date” Type - *3/14/2001

Schedule Dates appear in column AC13 thru AC298. Cells are formatted as: “Date” Type- 3/14/01

<?xml:namespace prefix = o ns = "urn:schemas-microsoft-com:office:office" /><o:p> </o:p>
Problem 1: I want to sum the number of cells in Y13 thru Y298 wherein the date that appears is within the month of February of 2011 and do so only when the date that appears in corresponding cells AC13 thru AC298 is also within the month of February of 2011.

Problem 2: I want to sum the number of cells in Y13 thru Y298 wherein the date that appears is within the month of February of 2011 and do so only when the date that appears in corresponding cells AC13 thru AC298 does not equal the month of February of 2011 or is blank.
 

Excel Facts

What is the last column in Excel?
Excel columns run from A to Z, AA to AZ, AAA to XFD. The last column is XFD.
for problem 1 in z13 you could use the formula
=IF(AND(MONTH(Y13)=2,MONTH(AC13)=2),"1")

then use the count function to count all the 1's you get in column z.

for problem 2 in aa13 you could could then just subtract the value from your first count from the total
 
Upvote 0

Forum statistics

Threads
1,224,521
Messages
6,179,286
Members
452,902
Latest member
Knuddeluff

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top