Hi all,
I assume this would be an easy one to answer......
Everytime I add a new line of data to a spreadsheet called "ORDP_Data", I want to click a button that will always select the last 10 lines added in colmun "F" and paste the rows to another spreadsheet in the same workbook.
Example: I click the button and fields F2:F12 are copied to another spreadsheet. If I add a new line of data in F13 and click the button again, F3:F13 will be copied and pasted, and so on......
I have created I think the first part of it by using xlDown
Sub MATSelection()
Selection.End(xlDown).Select
End Sub
Thanks in advance
Tadynn
I assume this would be an easy one to answer......
Everytime I add a new line of data to a spreadsheet called "ORDP_Data", I want to click a button that will always select the last 10 lines added in colmun "F" and paste the rows to another spreadsheet in the same workbook.
Example: I click the button and fields F2:F12 are copied to another spreadsheet. If I add a new line of data in F13 and click the button again, F3:F13 will be copied and pasted, and so on......
I have created I think the first part of it by using xlDown
Sub MATSelection()
Selection.End(xlDown).Select
End Sub
Thanks in advance
Tadynn