Help for multiple line look ups using my Index/Match formula

tewell53

New Member
Joined
Sep 11, 2018
Messages
9
Office Version
  1. 365
Platform
  1. Windows
Scenario: I have a workbook with two sheets (calendar, Events). On the Events sheet I have 4 columns; Date(A), Time(B) , Description(C), and Location(D). Now on my Calendar page I want to display the Events that correspond to Today(). My Index/match finds and displays the first match, But How to I code for days when there are multiple events. Here is my formula

Code:
=IFERROR(INDEX(Events,MATCH(TODAY(),Events!A2:A10,0),2),"Nothing Schudeled")



Thanks
 

Excel Facts

Waterfall charts in Excel?
Office 365 customers have access to Waterfall charts since late 2016. They were added to Excel 2019.
Hello,

You could test the following Array Formula :

Code:
=[TABLE="width: 84"]
<tbody>[TR]
  [TD="class: xl63, width: 84"]IF(ROWS(B$2:B2)<=COUNTIF(Events!$A$2:$A$10,Today()),INDEX(Events!$B$2:$B$10,SMALL(IF(Events!$A$2:$A$10=Today(),ROW(Events!$A$2:$A$10)-ROW(Events!$A$2)+1),ROWS(B$2:B2))),"")[/TD]
[/TR]
</tbody>[/TABLE]

Hope this will help
 
Upvote 0
Hello,

Once you have tested the formula ... feel free to share your comments ...
 
Upvote 0

Forum statistics

Threads
1,224,823
Messages
6,181,170
Members
453,021
Latest member
Justyna P

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