ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Programming (https://www.excelbanter.com/excel-programming/)
-   -   "if" statement within a macro (https://www.excelbanter.com/excel-programming/328487-if-statement-within-macro.html)

Mili

"if" statement within a macro
 
I have a list of employee and when the button "update employees" is selected
I want the macro to cut and paste employess who are marked not current to
another page. I don't know how to use an IF statement within a macro. Please
help

Bob Phillips[_6_]

"if" statement within a macro
 

Dim iLastRow As Long
Dim i As Long
Dim rng As Range
iLastRow = Cells(Rows.Count, "A").End(xlUp).Row
For i = 1 To iLastRow
If Cells(i, "A").Value = "Not Current" Then
If rng Is Nothing Then
Set rng = Rows(i)
Else
Set rng = Union(rng, Rows(i))
End If
End If
Next i

If Not rng Is Nothing Then
rng.Copy Destination:=Worksheets("Sheet2").Range("A1")
End If


--

HTH

RP
(remove nothere from the email address if mailing direct)


"Mili" wrote in message
...
I have a list of employee and when the button "update employees" is

selected
I want the macro to cut and paste employess who are marked not current to
another page. I don't know how to use an IF statement within a macro.

Please
help





All times are GMT +1. The time now is 05:40 PM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com