Formula to obtain 2nd and 3rd future date from another worksheet

woodie

New Member
Joined
May 27, 2014
Messages
14
I have two worksheets in my workbook. Sheet 1 is called Front and sheet 2 is called Details. Cells A5-A57 contain events and Cells B5-57 contains the next date of the event in Column A. Column B gets the data from the Details Sheet. The formula I used to get the date of the next (future) event is {=MIN(IF(Details!B2:B283>=TODAY(),Details!B2:B283))}

I now would like to not only have the next event listed on the Front sheet, but the next 3 meetings listed. In Column C I would like the 2nd future meeting and in Column D the 3 future meeting.

As the year progresses, the data on the Front sheet will change to reflect the next 3 upcoming events.

Any assistance anyone could provide will greatly be appreciated.

Woodie
 

Excel Facts

How can you turn a range sideways?
Copy the range. Select a blank cell. Right-click, Paste Special, then choose Transpose.
ok, now I want to list the type of event (from the Event spreadsheet, Column F) under the nextevent date, the 2nd future date and 3rd future date in cells B3, C3 and D3 ofthe
front sheet


The "Front" worksheet
A BCD
1Org.Next Event2nd Future Event Date3rd Future EventDate
2ABC1/26/181/29/181/29/18
3Description of event: from event worksheet
4
5TDS2/21/183/14/183/21/18
6Description of event:
7
The "Event" Worksheet
ABCDEF
1OrgDateTimeLocationAddressComments
2ABC1/23/20188:30AMSkating Rink123 Turnaround LaneSkating
3ABC1/25/20188:30AMLibrary124 Read AveReading Lab
4ABC1/26/20188:30AMMovie Theatre524 Watching RoadMovie
5ABC1/29/20189:30AMSkating Rink123 Turnaround LaneSkating
6ABC1/29/20181:30PMMall435 Buy BlvdMall Event
7ABC1/30/20188:30AMLibrary124 Read AveReading Lab
8ABC2/1/20188:30AMSchool2010 Learning AveSchool Tutor Program
9ABC2/2/20188:30AMPottery Studio875 Molding WayPottery Workshop
10ABC2/5/20189:30AMMovie Theatre524 Watching RoadMovie
11ABC2/5/20181:30PMLibrary124 Read AveReading Lab
12ABC2/6/20188:30AMSchool2010 Learning AveSchool Tutor Program
13ABC2/8/20188:30AMPottery Studio875 Molding WayPottery Workshop
14TDS1/10/20189:00 AMYMCA321 Get Fit Afterschool Party
15TDS1/17/20189:00 AMSchool125 Show AveSchool Dance
16TDS2/14/20189:00 AMBig Brothers125 Donation WayFundraiser
17TDS2/21/20189:00 AMLibrary124 Read AveBook Drive
18TDS3/14/20189:00 AMYMCA321 Get Fit Special Olympics Event

<colgroup><col width="40" style="width: 30pt; mso-width-source: userset; mso-width-alt: 1396;"> <col width="167" style="width: 125pt; mso-width-source: userset; mso-width-alt: 5818;"> <col width="93" style="width: 70pt; mso-width-source: userset; mso-width-alt: 3258;"> <col width="95" style="width: 71pt; mso-width-source: userset; mso-width-alt: 3304;"> <col width="139" style="width: 105pt; mso-width-source: userset; mso-width-alt: 4864;"> <col width="141" style="width: 106pt; mso-width-source: userset; mso-width-alt: 4933;"> <col width="145" style="width: 109pt; mso-width-source: userset; mso-width-alt: 5073;"> <tbody>
</tbody>
 
Upvote 0
This?


Excel 2010
ABCD
1Org.Next Event2nd Future Event Date3rd Future EventDate
2ABC1/25/20181/26/20181/29/2018
3Description of event: from event worksheetReading LabMovieSkating
4
5TDS2/14/20182/21/20183/14/2018
6Description of event:FundraiserBook DriveSpecial Olympics Event
Front
Cell Formulas
RangeFormula
B2{=SMALL(IF(Event!$A$2:$A$18=Front!$A2,IF(Event!$B$2:$B$18>=TODAY(),Event!$B$2:$B$18)),COLUMN(A1))}
B3{=INDEX(Event!$F$1:$F$18,SMALL(IF(Event!$A$2:$A$18=Front!$A2,IF(Event!$B$2:$B$18>=TODAY(),ROW(Event!$B$2:$B$18))),COLUMN(A1)))}
Press CTRL+SHIFT+ENTER to enter array formulas.
 
Upvote 0
Thanks so much. It worked perfect for cell B2, however when I tried to drag the formula to the right, I received a #NUM !
 
Upvote 0

Forum statistics

Threads
1,216,166
Messages
6,129,257
Members
449,497
Latest member
The Wamp

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