Index(match frustration

SFCChase

Board Regular
Joined
Jun 25, 2013
Messages
107
Office Version
  1. 2016
Platform
  1. Windows
I'm using an Index and Match formula to search a spreadsheet for data. Using a name from column A and a training class from row 40, I would like the completion date from the I9:AX36 table to transfer to another cell further down the page. The formula I'm currently using is =IFNA(INDEX($I$9:$AX$36,MATCH($A44,$A$9:$A$36,0),MATCH(I$40,$I$5:$AX$5,0)),"")

The issue that I'm having is that there are spots in the table that do not have data entered (no completion dates). I would like these to be reflected by resulting in a blank cell, but it is defaulting to a date of 01/00/00

Any suggestions would be greatly appreciated.
 

Excel Facts

Convert text numbers to real numbers
Select a column containing text numbers. Press Alt+D E F to quickly convert text to numbers. Faster than "Convert to Number"
If you simply want the cell to appear empty, change the formatting. Something like dd-mmm;;
 
Upvote 0
even with a format change it results a 01-JAN for any cell that is blank in data table up above.
 
Upvote 0
You may need to run it twice to test, no big deal unless it's a huge dataset. Try something like:

Code:
IF(INDEX($I$9:$AX$36,MATCH($A44,$A$9:$A$36,0),MATCH(I$40,$I$5:$AX$5,0))="","",INDEX($I$9:$AX$36,MATCH($A44,$A$9:$A$36,0),MATCH(I$40,$I$5:$AX$5,0)))

or

Code:
IF(INDEX($I$9:$AX$36,MATCH($A44,$A$9:$A$36,0),MATCH(I$40,$I$5:$AX$5,0))=0,"",INDEX($I$9:$AX$36,MATCH($A44,$A$9:$A$36,0),MATCH(I$40,$I$5:$AX$5,0)))
 
Upvote 0

Forum statistics

Threads
1,215,044
Messages
6,122,827
Members
449,096
Latest member
Erald

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