Copy rows from activesheet and create and paste in new sheet.
Closed
heyxarno
Posts
1
Registration date
Tuesday November 25, 2014
Status
Member
Last seen
November 25, 2014
-
Nov 25, 2014 at 08:42 AM
heyxarno - Nov 27, 2014 at 08:12 AM
heyxarno - Nov 27, 2014 at 08:12 AM
Related:
- Copy rows from activesheet and create and paste in new sheet.
- Create skype account with gmail - Guide
- Create new instagram account without phone number - Guide
- Sheet right to left in google sheet - Guide
- Windows network commands cheat sheet - Guide
- Mark sheet in excel - Guide
1 response
This should work - it searches via row then pastes the row into sheet 2, if you want to change where the data is sent just change the sheet number.
If someone knows how to make this code delete the source info id really appreciate it!
Sub customcopy()
Dim strsearch As String, lastline As Integer, tocopy As Integer
strsearch = CStr(InputBox("enter the string to search for"))
lastline = Range("A65536").End(xlUp).Row
j = 1
For i = 1 To lastline
For Each c In Range("B" & i & ":Z" & i)
If InStr(c.Text, strsearch) Then
tocopy = 1
End If
Next c
If tocopy = 1 Then
Rows(i).Copy Destination:=Sheets(2).Rows(j)
j = j + 1
End If
tocopy = 0
Next i
End Sub
If someone knows how to make this code delete the source info id really appreciate it!
Sub customcopy()
Dim strsearch As String, lastline As Integer, tocopy As Integer
strsearch = CStr(InputBox("enter the string to search for"))
lastline = Range("A65536").End(xlUp).Row
j = 1
For i = 1 To lastline
For Each c In Range("B" & i & ":Z" & i)
If InStr(c.Text, strsearch) Then
tocopy = 1
End If
Next c
If tocopy = 1 Then
Rows(i).Copy Destination:=Sheets(2).Rows(j)
j = j + 1
End If
tocopy = 0
Next i
End Sub
Nov 27, 2014 at 08:12 AM
Thanks so much for the help. I've used your code and modified it a bit so that when the string that will it typed into the message box creates a new sheet named after that string. It looks like this.
Sub customcopy()
Dim strsearch As String, lastline As Integer, tocopy As Integer, ws As Worksheet
Dim CurrSht As Integer
Set ws = ActiveSheet
strsearch = CStr(InputBox("enter the string to search for"))
lastline = Range("A65536").End(xlUp).Row
j = 1
CurrSht = ActiveSheet.Index
Worksheets.Add After:=Worksheets(CurrSht)
ActiveSheet.Name = strsearch
Call FirstSheet 'this function just calls back the active sheet so that the macro can sort
from that sheet
For i = 1 To lastline
For Each c In Range("B" & i & ":Z" & i)
If InStr(c.Text, strsearch) Then
tocopy = 1
End If
Next c
If tocopy = 1 Then
Rows(i).Copy Destination:=Sheets(strsearch).Rows(j)
j = j + 1
End If
tocopy = 0
Next i
End Sub