Matching Dates to Cell Data

Tseelu

New Member
Joined
Jan 14, 2016
Messages
7
Hello,

I had a question that I was hoping to get some help with.



I have a spreadsheet that has dates in Column A and dates in Column J.



I would like to Match the Dates in Column J with the dates in Column A. When the match is found, I would like the contents of the Adjacent cells to matching-date-cell in Column J (Namely K,L,M,N and O) to be be entered into the Adjacent Cells of matching-date-cell of Column A (Namely B,C,D,E and F).



Example 1: Cell J1's Date is 9/7/1971 and Cell A1's date is 9/7/1971, so I would like the contents of cells K1,L1,M1,N1 and O1 to be placed in cells B1,C1,D1,E1 and F1.


Example 2; Cell J12 has the date 9/22/1971 and BOTH Cells A18 and A19 also have the date 9/22/1971, so I would like the contents of cells K12,L12,M12,N12 and O12 to be placed in cells B18,C18,D18,E18 and F18 AND B19,C19,D19,E19 and F19.

My spreadsheet I am working with is quite large and includes data in 33,607 Rows of Column A and 11,604 Rows in Columns J,K,L,M,N and O.





Thank you in advance for any insight you can give.
 
Last edited:
You are welcome!

You could also hard-code the values, like this:
I1: =VLOOKUP($A1,$Q:$V,2,FALSE)
J1: =VLOOKUP($A1,$Q:$V,3
,FALSE)
...

But then you would need slightly different formulas for each column.
By using COLUMN(), we can just have one formula that will automatically change the column we pull from as we copy to other columns.

 
Upvote 0

Excel Facts

Format cells as time
Select range and press Ctrl+Shift+2 to format cells as time. (Shift 2 is the @ sign).

Forum statistics

Threads
1,223,231
Messages
6,170,884
Members
452,364
Latest member
springate

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