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.
 

Excel Facts

Ambidextrous Undo
Undo last command with Ctrl+Z or Alt+Backspace. If you use the Undo icon in the QAT, open the drop-down arrow to undo up to 100 steps.
Have you tried formatting the cell with the formula with an appropriate date format?
 
Upvote 0
Some of the returned data:
[TABLE="width: 91"]
<colgroup><col></colgroup><tbody>[TR]
[TD]42345[/TD]
[/TR]
[TR]
[TD]42612
[/TD]
[/TR]
[TR]
[TD]42612[/TD]
[/TR]
[TR]
[TD]42347[/TD]
[/TR]
[TR]
[TD] [/TD]
[/TR]
[TR]
[TD]42536[/TD]
[/TR]
[TR]
[TD]42536[/TD]
[/TR]
[TR]
[TD]42612
[/TD]
[/TR]
[TR]
[TD]42536[/TD]
[/TR]
</tbody>[/TABLE]
 
Upvote 0
Some of the returned data:
[TABLE="width: 91"]
<tbody>[TR]
[TD]42345[/TD]
[/TR]
[TR]
[TD]42612[/TD]
[/TR]
[TR]
[TD]42612[/TD]
[/TR]
[TR]
[TD]42347[/TD]
[/TR]
[TR]
[TD][/TD]
[/TR]
[TR]
[TD]42536[/TD]
[/TR]
[TR]
[TD]42536[/TD]
[/TR]
[TR]
[TD]42612[/TD]
[/TR]
[TR]
[TD]42536[/TD]
[/TR]
</tbody>[/TABLE]

Try...

=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")

Adjust the format instruction "m/d/yyyy" to suit.
 
Upvote 0
Morning/Afternoon Aladin.
I enter the formula, adjust the date to "mm/dd/yy", press enter and get the following message:
"The value you entered is not valid. A user has restricted values that can be entered into this cell." Retry, cancel help....
 
Upvote 0
Was reading another post about the exact error. found it to be a data validation issue. "reset" the data validation. It works now. Thanks so much for your help!
 
Upvote 0
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?
 
Upvote 0

Forum statistics

Threads
1,223,981
Messages
6,175,771
Members
452,668
Latest member
mrider123

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