Link last 15 days of data.

Analystbycuriosity

New Member
Joined
Oct 8, 2017
Messages
18
Data sample:
08/12/2017 6.2 6.5
09/12/2017 6.3 6.8
10/12/2017 6.4 6.7
11/12/2017 6.3 6.6
daily values are added one below the other in sheet 1

i have to copy last 15 days data in sheet 2 daily.
say, 2 columns & last 15 rows
27/11/2017 6.2 6.7
to..... ....
11/12/2017 6.3 6.6
How do i link data of sheet 1 to sheet 2 so that the next day without manually copying, it shows
28/11/2017 6.1 6.7
to.... ... ...
12/12/2017 6.5 6.8
Please Help!
 

Excel Facts

Create a chart in one keystroke
Select the data and press Alt+F1 to insert a default chart. You can change the default chart to any chart type
Plenty of ways to do this. Heres one. Lets say your data in columns A:C of Sheet1. In Sheet2 cell A1 place:

=TODAY()-14

in A2:

=A1+1

in B1:

=VLOOKUP(A1,Sheet1!$A:$C,2,1)

in C1:

=VLOOKUP(A1,Sheet1!$A:$C,3,1)

This way has a couple of caveats. Your data is in order ie the dates are earliest to latest. Also there is only one result per date in your data.
 
Upvote 0

Forum statistics

Threads
1,224,888
Messages
6,181,602
Members
453,055
Latest member
cope7895

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