View Single Post
  #7   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Glenn Glenn is offline
external usenet poster
 
Posts: 1,240
Default Formula for selecting a Leap Year.

Glenn wrote:
BadBoy wrote:
Hello,

The first formula below checks to see if the word February is in one
cell and the year 2012 in another and if so, will place the number 29
in another cell for me and if not, 28.

=IF(AND('Monthly Totals'!L8="February",'Monthly Totals'!O8=2012),29,28)

I am looking to create a formula that will look for the word February
in one cell and one these following years. Not just 2012.
2012, 2016, 2020, 2024, 2028

If February has been selected from a drop window and as well, one of
those years from another drop window, I wish the program to know that
someone has selected a leap year and will place the date number 29 in
a cell. Otherwise, the number 28.

This formula works well but it only checks for the year 2012.
=IF(AND('Monthly Totals'!L8="February",'Monthly Totals'!O8=2012),29,28)

This formula does not work.
=IF(AND('Monthly Totals'!L8="February",'Monthly
Totals'!O8={2012,2016,2020,2024,2028}),29,28)

Thank you in advance for any help you may have to offer.

-Bad



=IF('Monthly Totals'!L8="February",DAY(DATE('Monthly Totals'!O8,3,0)))


Forgot the "false" portion of the formula...not sure what you want the

=IF('Monthly Totals'!L8="February",DAY(DATE('Monthly Totals'!O8,3,0)),"Not
February")