index match returning serial date

teamplez

New Member
Joined
Aug 20, 2015
Messages
26
Hi all!

Been a while since my last post.

I have multiple worksheets in a workbook.

Using worksheets CIP 1.1 & 1.2 and Working Data.

Column P is completion date, formatted as a date, on CIP 1.1 & 1.2 tab.
Column F is completion date on Working Data tab. Formula is in F and dragged down accordingly.
Column B is system name on Working Data tab.
Column AC is system name on CIP 1.1 & 1.2

Formula is
=INDEX('CIP 1.1 & 1.2'!P:P,MATCH('Working Data'!B:B,'CIP 1.1 & 1.2'!AC:AC,0))&""

I am getting serial dates returned not the user friendly date. Both date referenced columns are formatted as dates.

Also, my CIP 1.1 & 1.2 worksheet is linked to a sharepoint (SP) list. I have users update the SP list. I generate metrics and reports from the linked data in the workbook.

Any and all help with ideas to resolve this formatting issue will be greatly appreciated.
 
As I dragged the formula down the range, it started populating "01/00/00" for blank entries. in my original formula I used "&""" to provide null responses as blank. any way to do that with yours?

Try...
Rich (BB code):
=IF(ISNUMBER(MATCH('Working Data'!B:B,'CIP 1.1 & 1.2'!AC:AC,0)),
    TEXT(INDEX('CIP 1.1 & 1.2'!P:P,MATCH('Working Data'!B:B,'CIP 1.1 & 1.2'!AC:AC,0)),
      "m/d/yyyy"),"")
 
Upvote 0

Excel Facts

Round to nearest half hour?
Use =MROUND(A2,"0:30") to round to nearest half hour. Use =CEILING(A2,"0:30") to round to next half hour.

Forum statistics

Threads
1,223,986
Messages
6,175,788
Members
452,670
Latest member
nogarth

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