Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
I am having a problem pasting all of the row in sheet1. It pastes the row
starting with the cell that is found and everything to the right, but nothing to the left. If anyone can help that would be nice. Here is the code. Thanks -mark Private Sub cmdFind_Click() Dim wksCopyFrom As Worksheet Dim wksCopyTo As Worksheet Dim rngToSearch As Range Dim rngFound As Range Dim rngCopyTo As Range Set wksCopyTo = Sheets("Search_Add") For Each wksCopyFrom In Worksheets If wksCopyFrom.Name < wksCopyTo.Name And _ wksCopyFrom.Name < "Search_Add" Then 'sheets you don't want searched Set rngToSearch = wksCopyFrom.Cells Set rngFound = rngToSearch.Find(txtFind.Text, , xlValues, LookAt:=xlPart) If Not rngFound Is Nothing Then 'If rngCopyTo.Offset.Value < "" Then 'rngFound.Offset(1, 0).EntireRow.Insert Set rngCopyTo = wksCopyTo.Cells(Rows.Count, "A").End(xlUp).Offset(2, 0) rngFound.EntireRow.Copy rngCopyTo End If End If 'End If Next wksCopyFrom txtFind.Text = "" Sheets("Search_Add").Activate End Sub |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Pasting problem? | New Users to Excel | |||
Problem with pasting value of a sum | Excel Worksheet Functions | |||
pasting and one other problem | Excel Discussion (Misc queries) | |||
Pasting problem | Excel Programming | |||
Copying and pasting entire workbook | Excel Programming |