Create a list while source is just one row

TheIntern

New Member
Joined
Mar 15, 2011
Messages
30
Hello again,

today I should create a list while the source is actualized in one row. So the source overwrites the old data with new data, but in the list it should fill the next line. Sorry, I don't really know how to describe it...I hope you Understand^^
It should look like that:
Source:
5 5 5 5
List:
1 1 1 1
2 2 2 2
3 3 3 3
4 4 4 4
5 5 5 5

How can I tell excel not to overwrite the old data and create such a list?

Thanks in advance,

The Intern
 

Excel Facts

Format cells as date
Select range and press Ctrl+Shift+3 to format cells as date. (Shift 3 is the # sign which sort of looks like a small calendar).
Okay, I kind of solved it like that:
Code:
Sub copy()

    Sheets("sheet1").Select
    Range("A4:O4").Select
    Selection.copy
    Sheets("sheet2").Select
    Range("B65536").Select
    Selection.End(xlUp).Select
    ActiveCell.Offset(1, -1).Select
    Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
        :=False, Transpose:=False
End Sub
now I just need the macro to start everytime the file is updated...any ideas how I can do this?
 
Last edited:
Upvote 0

Forum statistics

Threads
1,224,592
Messages
6,179,777
Members
452,942
Latest member
VijayNewtoExcel

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