Hey all, I'm having a little trouble with a Macro at the moment, I need to copy 4 columns on one page, (A, B, C and D) and paste them into another sheet on Columns C, D, E and F. That I have achieved...
However, I also need to filter out any row where the value of column A begins with a 6. Only if It begins with a 6, it can contain one after that..
I'd like to be able to pull the numbers, filter them, and paste the ones that pass if that would be at all possible.
The following is what I've come up with so far,
but I am still fairly new to this stuff.
Sub orgtowip()
Columns("A:E").Select
Selection.Copy
Sheets("wip").Select
Range("A1").Select
ActiveSheet.Paste
Application.CutCopyMode = False
ActiveWorkbook.Save
End Sub
any help or tips on where to look would be greatly appreciated.
However, I also need to filter out any row where the value of column A begins with a 6. Only if It begins with a 6, it can contain one after that..
I'd like to be able to pull the numbers, filter them, and paste the ones that pass if that would be at all possible.
The following is what I've come up with so far,
but I am still fairly new to this stuff.
Sub orgtowip()
Columns("A:E").Select
Selection.Copy
Sheets("wip").Select
Range("A1").Select
ActiveSheet.Paste
Application.CutCopyMode = False
ActiveWorkbook.Save
End Sub
any help or tips on where to look would be greatly appreciated.