![]() |
Excel Copy and Paste Issue
I amsomewhat of a novice with Excel.
I have created a form and a macro to print then clear the form. What I am trying to do is to take certain cells in this form and copy them into a report.How do I get the data which will change each time the form is filled to paste into the report going down the column. |
Excel Copy and Paste Issue
Try this if I understand you correct
http://www.rondebruin.nl/copy1.htm -- Regards Ron de Bruin http://www.rondebruin.nl "Joseph Cura" wrote in message . .. I amsomewhat of a novice with Excel. I have created a form and a macro to print then clear the form. What I am trying to do is to take certain cells in this form and copy them into a report.How do I get the data which will change each time the form is filled to paste into the report going down the column. |
Excel Copy and Paste Issue
Hu Joseph,
Try this: Assuming the sheet with the form is named 'myForm' and you have a sheet for reporting named 'myReport' Sub PrintReportClear() ' ' Your print code comes here ' If IsEmpty(Sheets("myReport").Range("A1")) Then Sheets("myReport").Range("A1").Value = "Names" Sheets("myReport").Range("A2").Value = _ Sheets("myForm").Range("Name").Value Else Sheets("myReport").Range("A1").End(xlDown).Offset( 1, 0).Value = _ Sheets("myForm").Range("Name").Value End If If IsEmpty(Sheets("myReport").Range("B1")) Then Sheets("myReport").Range("B1").Value = "ZipCodes" Sheets("myReport").Range("B2").Value = _ Sheets("myForm").Range("Zip").Value Else Sheets("myReport").Range("B1").End(xlDown).Offset( 1, 0).Value = _ Sheets("myForm").Range("Zip").Value End If ' ' Your clear code comes here ' End Sub HTH, Executor |
Excel Copy and Paste Issue
Thanks,
I will give this a try. Aljoe |
All times are GMT +1. The time now is 04:44 AM. |
Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com