Need to add 4th criteria to Index/Match formula

csenor

Board Regular
Joined
Apr 10, 2013
Messages
169
Office Version
  1. 365
Platform
  1. Windows
I have a formula that looks up the completion date of a course someone took. I want to add a fourth criteria so we can use this Course Entry Table for years to come. Can someone show me how to do this?

My Entry table has 4 columns: Date, Name, Course, Pass_Fail

My Completion Log has all of the names down the left side and all of the courses across the top. Some courses are mandatory every year and some are electives that are taken maybe once in a career.

I want to be able to put a year in a cell at the top of the page and show the completion dates for all of the students for that year.

Criteria I need to add:
YEAR(Date)=E32

Current Formula that works with named ranges:
=IFERROR(INDEX(Date,MATCH($B34&C$33&"Pass",INDEX(Name&Course&Pass_Fail,),0)),"")
 

Excel Facts

Can Excel fill bagel flavors?
You can teach Excel a new custom list. Type the list in cells, File, Options, Advanced, Edit Custom Lists, Import, OK
Try this...

=IFERROR(INDEX(Date,MATCH($B34&C$33&"PassTRUE",INDEX(Name&Course&Pass_Fail&(YEAR(Date)=E32),),0)),"")
 
Last edited:
Upvote 0

Forum statistics

Threads
1,223,103
Messages
6,170,123
Members
452,303
Latest member
c4cstore

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