View Single Post
  #3   Report Post  
Posted to microsoft.public.excel.programming
Executor Executor is offline
external usenet poster
 
Posts: 74
Default 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