Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
I have this macro:
Sub GetTerminations() Const SumSheet = "TERMINATED EMPLOYEES" Const BilingualSheet = "Employee Bi-Lingual Skills" Const TermSheet = "New Terminations" Const TermLastName = "A" Const TermFirstName = "B" Const BiLastName = "A" Const BiFirstName = "B" Const SumLastName = "A" Const SumFirstName = "B" SumRowCount = 1 TermRowCount = 1 With Sheets(TermSheet) Do While .Range(TermLastName & TermRowCount) < "" LastName = .Range(TermLastName & TermRowCount) FirstName = .Range(TermFirstName & TermRowCount) With Sheets(BilingualSheet) BiRowCount = 1 Do While .Range(BiLastName & BiRowCount) < "" If (.Range(BiLastName & BiRowCount) = LastName) And _ (.Range(BiFirstName & BiRowCount) = FirstName) Then With Sheets(SumSheet) Sheets(BilingualSheet).Rows(BiRowCount).Copy _ Destination:=.Rows(SumRowCount) SumRowCount = SumRowCount + 1 End With Exit Do End If BiRowCount = BiRowCount + 1 Loop End With TermRowCount = TermRowCount + 1 Loop End With End Sub Instead of just copying the row from the bilingual sheet and pasting them on the sumsheet, i want the macro to CUT the row and paste it in the sumsheet. so it is no longer in the bilingual sheet. -- I appreciate the help; thanks in advance |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Macro Help Needed - Excel 2007 - Print Macro with Auto Sort | Excel Worksheet Functions | |||
My excel macro recorder no longer shows up when recording macro | Excel Discussion (Misc queries) | |||
My excel macro recorder no longer shows up when recording macro | Excel Discussion (Misc queries) | |||
using a cell value to control a counter inside a macro and displaying macro value | Excel Worksheet Functions | |||
Macro needed to Paste Values and prevent Macro operation | Excel Discussion (Misc queries) |