extract full column from another sheet

tranh

New Member
Joined
May 22, 2018
Messages
4
Hi Mr. Excel,
there are few date columns in data sheet and I want to collect 1 column that match the latest date column to another sheet
is there any simple way that does not need to use VBA, because VBA doesn't work when I share this worksheet to others.

thanks,
Tranh

open
open
 

Excel Facts

What do {} around a formula in the formula bar mean?
{Formula} means the formula was entered using Ctrl+Shift+Enter signifying an old-style array formula.
A
B
C
D
E
F
G
1
Date1Date2Date3Latest DateColumn
2
9/11/2017​
2/15/2017​
5/2/2018​
11/1/2018​
2/15/2017​
3
11/14/2017​
6/25/2018​
4/2/2018​
6/25/2018​
4
9/18/2018​
1/6/2018​
5/6/2018​
1/6/2018​
5
7/13/2018​
11/1/2018​
9/10/2018​
11/1/2018​
6
6/8/2018​
9/3/2017​
1/21/2017​
9/3/2017​
7
1/10/2018​
7/21/2017​
8/4/2018​
7/21/2017​
8
7/11/2018​
5/22/2018​
8/21/2018​
5/22/2018​
9
7/1/2018​
1/29/2017​
7/30/2018​
1/29/2017​
10
5/7/2017​
9/6/2018​
4/23/2017​
9/6/2018​
11
12/6/2017​
7/3/2017​
2/20/2017​
7/3/2017​
Sheet: Sheet57

Array formula in cell range G2:G11:
=INDEX($A$2:$C$11,0,MIN(IF(E2=A2:C11,MATCH(COLUMN(A2:C11),COLUMN(A2:C11)),"")))

Formula in cell E2:
=MAX(A2:C11)
 
Upvote 0
sorry if i made any misunderstanding and because I'm very new here...
I did add images on my previous post but maybe something went wrong so those images didn't show up...

Below are 2 images that hope it explains more of my question

data.PNG


latest.PNG


there are few date columns in data sheet and I want to collect 1 column that match the latest date column to another sheet
is there any simple way that does not need to use VBA, because VBA doesn't work when I share this worksheet to others.

Thanks,
 
Upvote 0
sorry if i made any misunderstanding and because I'm very new here...
I did add images on my previous post but maybe something went wrong so those images didn't show up...

Below are 2 images that hope it explains more of my question
data.png
[/URL][/IMG]

there are few date columns in data sheet and I want to collect 1 column that match the latest date column to another sheet
is there any simple way that does not need to use VBA, because VBA doesn't work when I share this worksheet to others.

data.png
[/URL][/IMG]

Thanks,
 
Upvote 0
Array Formula entered in cell range E4:E9:

=INDEX(A4:D9,0, MATCH(MAX(A3:D3),A3:D3,0))

1. Select cell range E4:E9.
2. Copy/Paste formula into the formula bar.
3. Press and hold CTRL + SHIFT
4. Press Enter
 
Upvote 0

Forum statistics

Threads
1,215,569
Messages
6,125,600
Members
449,238
Latest member
wcbyers

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