Formula to extract a sub-set of dates from a larger set

AllyJM

New Member
Joined
Jun 9, 2015
Messages
5
I have a worksheet with a list of dates and events in range F2:G19. I want to use a formula to compare the month in cell A2, and the year in cell B2, and go through all the cells in range F2:F19 and extract each and all corresponding dates and place them in the range A5:A7. This is obviously a very simple matter using VBA, but I want to be able to use it on my Android phone, which will not run macros.
 

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.
Perhaps

=IFERROR(AGGREGATE(15,6,$F$2:$F$19/(TEXT($F$2:$F$19,"mmm")=$A$2)/(YEAR($F$2:$F$19)=$B$2),ROWS($A$5:$A5)),"")

Assumed abbreviated months in text format, i.e. Jan, Feb, Mar, etc. You might need to array confirm the formula, which I don't think can be done on Android, in which case you would need to apply the formula in desktop excel, then transfer the file.
 
Upvote 0
Cross posted Formula to extract a sub-set of dates from a larger set

While we do allow Cross-Posting on this site, we do ask that you please mention you are doing so and provide links in each of the threads pointing to the other thread (see rule 13 here along with the explanation: Forum Rules). This way, other members can see what has already been done in regards to a question, and do not waste time working on a question that may already be answered.
 
Upvote 0
@AllyJM
Please also supply links to any other sites you have asked this question. Thanks
 
Upvote 0

Forum statistics

Threads
1,214,951
Messages
6,122,442
Members
449,083
Latest member
Ava19

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