Cut instead of Copy
I didn't examine your code closely enough. To the best of my knowledge, you
can't CUT a discontiguous range. Just to confirm:
From VBA help on the CUT method:
The cut range must be made up of adjacent cells.
--
Regards,
Tom Ogilvy
"RigasMinho" wrote:
Yeah i tried that already and it gives me an error.
I'm able to use the cut on this other code i made but that code is
really hard to understand lol.
Tom Ogilvy wrote:
Have you tried changing
rngFoundAll.EntireRow.Copy rngDestination
to
rngFoundAll.EntireRow.Cut rngDestination
--
Regards,
Tom Ogilvy
"RigasMinho" wrote:
I have this code here where it finds and copies the entire row where
the search is made.
But instead of copying the entire row is there a way to cut the
information instead?
Let me know thanks
Dim wksToSearch As Worksheet
Dim rngToSearch As Range
Dim rngFound As Range
Dim rngFoundAll As Range
Dim strFirstAddress As String
Dim wksDestination As Worksheet
Dim rngDestination As Range
Set wksDestination = Sheets("Output")
Set rngDestination = wksDestination.Range("A1")
Set wksToSearch = Sheets("Master Questions")
Set rngToSearch = wksToSearch.Columns("E:F")
Set rngFound = rngToSearch.Find(What:="AC", _
LookIn:=xlFormulas, _
LookAt:=xlPart, _
MatchCase:=False)
If rngFound Is Nothing Then
MsgBox "Sorry. Not found"
Else
Set rngFoundAll = rngFound
strFirstAddress = rngFound.Address
Do
Set rngFoundAll = Union(rngFound, rngFoundAll)
Set rngFound = rngToSearch.FindNext(rngFound)
Loop Until rngFound.Address = strFirstAddress
'rngFoundAll.Copy rngDestination
'rngDestination.Resize(rngFoundAll.Cells.Count).In terior.ColorIndex = 3
rngFoundAll.EntireRow.Copy rngDestination
End If
|