RicardoCubed
Board Regular
- Joined
- Jul 10, 2013
- Messages
- 206
- Office Version
- 365
- Platform
- Windows
Help appreciated with adjusting the below formula to include returning all birthday between a start and end date. the below works for the intended purpose of determining who has a birthday on the month and day indicated. I want to have the added functionality of adding for example all those who have a birthday a start date and end date.
Thanks for any help out there.
Thanks for any help out there.
Excel 2010 | ||||||
---|---|---|---|---|---|---|
K | L | M | N | |||
383 | Month | Day | ||||
384 | Names | Birthday | 7 | 8 | ||
385 | Joe | 7/8/1965 | ||||
386 | Harry | 5/7/1980 | ||||
387 | Will Populate below range with who has birthday | |||||
388 | Joe | |||||
389 | George | |||||
390 | George | 7/8/1965 | Paul | |||
391 | Rick | 6/8/1982 | -- | |||
392 | John | 3/1/1968 | -- | |||
393 | Paul | 7/8/1987 | -- | |||
394 | Ringo | 6/8/1990 | -- | |||
BDay |
Cell Formulas | ||
---|---|---|
Range | Formula | |
M388 | {=IFERROR(INDEX($K$385:$K$394,SMALL(IF(ISNUMBER($L$385:$L$394),IF(MONTH($L$385:$L$394)=$M$384,IF(DAY($L$385:$L$394)=$N$384,ROW($L$385:$L$394)-ROW($L$385)+1))),ROWS($L$385:L385))),"--")} | |
Press CTRL+SHIFT+ENTER to enter array formulas. |