Transferring From Sheet 1 to Sheet 2 and Sorting

mrsamjones28

New Member
Joined
Jun 12, 2019
Messages
5
I am really new to Excel, as in no formal training or classes just Google and my brain :)

I need help taking data from sheet 1 and transferring it into sheet 2. I also need sheet 2 to change automatically when I update sheet 1.

Once I do this, I then need to be able to sort the dates on sheet 2 without it affecting sheet 1. The problem is that I have tried doing a special paste and using the link but then I can't sort because excel doesn't know that the data carried over is a date. It just see the linked text so I have no option to sort by date just by text.

I am not well versed in VBA but am willing to try if someone can walk me through it. Thanks!
 

Excel Facts

How to show all formulas in Excel?
Press Ctrl+` to show all formulas. Press it again to toggle back to numbers. The grave accent is often under the tilde on US keyboards.
what is your excel version?
are you able to use PowerQuery (Get&Transform)?
how dates will be sorted?
 
Upvote 0
what is your excel version?
are you able to use PowerQuery (Get&Transform)?
how dates will be sorted?

I actually figured out how to do the transferring in VBA. I am having trouble now filtering the data and sorting it. I used the following in VBA:

Sub Copy()
Sheets("Data Entry").Range("A5:A654").Copy Sheets("Try1").Range("A5")
Sheets("Data Entry").Range("A5:A654").Copy Sheets("Try1").Range("D5")
Sheets("Data Entry").Range("A5:A654").Copy Sheets("Try1").Range("G5")
Sheets("Data Entry").Range("A5:A654").Copy Sheets("Try1").Range("J5")
Sheets("Data Entry").Range("A5:A654").Copy Sheets("Try1").Range("M5")
Worksheets("Try1").Range("B5:b654").Value = Worksheets("Data Entry").Range("F5:F654").Value
Worksheets("Try1").Range("E5:E654").Value = Worksheets("Data Entry").Range("G5:G654").Value
Worksheets("Try1").Range("H5:H654").Value = Worksheets("Data Entry").Range("H5:H654").Value
Worksheets("Try1").Range("K5:K654").Value = Worksheets("Data Entry").Range("I5:I654").Value
Worksheets("Try1").Range("N5:N654").Value = Worksheets("Data Entry").Range("J5:J654").Value

End Sub

When I try to go to the Try1 data and sort it, doing sorting on one column affects all the columns. I am not sure why.
 
Upvote 0

Forum statistics

Threads
1,214,641
Messages
6,120,691
Members
448,978
Latest member
rrauni

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