Hello all, I wonder if you could help me please? I am in the process of creating a worksheet but i feel like i have hit a brick wall.
I am using Excel 2013, I have a workbook with 8 sheets in. I have one sheet where all the main data is and then i have a further 7 sheets of various stages of work each customer is at.
I currently have macros that will cut the row of which ever cell i have selected and then paste it into the sheet intended. However, it does not paste the list boxes also, it only pastes the values.
Each row has data in columns A-Z. I am trying to get a macro to copy all of the data (A-Z) from a selected row and then paste special into another sheet into the next available row and then clear the contents from the original selection.
The macro i am using right now is:
I adapt this macro so i have multiple buttons on a sheet with 7 other sheet destinations available.
Any help with this matter would be greatly appreciated. I am new to the forum and hopefully I have kept to the rules.
Thank you
Anthony
I am using Excel 2013, I have a workbook with 8 sheets in. I have one sheet where all the main data is and then i have a further 7 sheets of various stages of work each customer is at.
I currently have macros that will cut the row of which ever cell i have selected and then paste it into the sheet intended. However, it does not paste the list boxes also, it only pastes the values.
Each row has data in columns A-Z. I am trying to get a macro to copy all of the data (A-Z) from a selected row and then paste special into another sheet into the next available row and then clear the contents from the original selection.
The macro i am using right now is:
Code:
Sub Assistance()
ActiveCell.EntireRow.Cut Sheets("Assistance").Range("A" & Rows.Count).End(xlUp).Offset(1, 0)
End Sub
I adapt this macro so i have multiple buttons on a sheet with 7 other sheet destinations available.
Any help with this matter would be greatly appreciated. I am new to the forum and hopefully I have kept to the rules.
Thank you
Anthony
Last edited: