Help with macros

MARKEGANDERSON

Active Member
Joined
Apr 7, 2007
Messages
264
HELLO ALL:

i am trying to redo a Macro. I can figure out what most of the formulas are.

Can anyone tells me what "i" signifies in the below?
If Cells(i, 5).


Sub HQ()
Dim lusedrow As Long
Dim desc As String
Dim wkb As Workbook

Set wkb = ActiveWorkbook

wkb.Worksheets("Theater Data").Activate

lusedrow = ActiveSheet.Cells(Rows.Count, 5).End(xlUp).Row
MsgBox lusedrow

For i = 2 To lusedrow
'Check for SUV
If Cells(i, 5).Value Like "*SUV*" And Cells(i, 7).Value < 556 Then
Cells(i, 8).Value = "U"
 

Excel Facts

Select a hidden cell
Somehide hide payroll data in column G? Press F5. Type G1. Enter. Look in formula bar while you arrow down through G.
i is a counter that is being looped through.

In the Cells(i, 5), we first need to look at the syntax of the Cells() function.

Cells(x,y) represents a range object of row x and column y.

So to refer to the cell G3, we could write:

Range("G3")
or
Cells(3,7)
or
Cells(3,"G")

So in your above code, Cells(i, 5) represents the row that the counter i is currently on, in column E.
 
Upvote 0
i is the variable in your loop which signifies the row number. Your macro starts with i =2 and loops, (increasing i by 1) until the lastrow is reached. So when i = 5,
Cells(i,5) refers to Cells (5,5) or $E$5!!
lenze
 
Upvote 0
how about this?

What does the "7" signifies?

lusedrow = ActiveSheet.Cells(Rows.Count, 7).End(xlUp).Row
MsgBox lusedrow
 
Upvote 0
yes to search column G you would use (i,7) if it is of a different lengh to column 5 though, for instance shorter it would stop at the lengh of column 5 at the moment as this line in the code

lusedrow = ActiveSheet.Cells(Rows.Count, 5).End(xlUp).Row

is looking for the last row in column 5 or "E" as well, you may need to change that reference to (Rows.count, 7)
 
Upvote 0
I keep getting an error message:compile error: next without for

can you please help?

Sub HQ()
Dim lusedrow As Long
Dim desc As String
Dim wkb As Workbook

Set wkb = ActiveWorkbook

wkb.Worksheets("ATV").Activate

lusedrow = ActiveSheet.Cells(Rows.Count, 7).End(xlUp).Row
MsgBox lusedrow

For i = 2 To lusedrow
'Light Wheel
If Cells(i, 7).Value Like "*Light Wheel*" And Cells(i, 9).Value < 556 Then
Cells(i, 10).Value = "U"
ElseIf Cells(i, 7).Value Like "*Light Wheel*" And Cells(i, 9).Value < 889 And Cells(i, 9).Value >= 556 Then
Cells(i, 10).Value = "M"
ElseIf Cells(i, 7).Value Like "*Light Wheel*" And Cells(i, 9).Value >= 889 Then
Cells(i, 10).Value = "O"

'Bus
If Cells(i, 7).Value Like "*Passenger Bus*" And Cells(i, 9).Value < 667 Then
Cells(i, 10).Value = "U"
ElseIf Cells(i, 7).Value Like "*Passenger Bus*" And Cells(i, 9).Value < 1067 And Cells(i, 9).Value >= 667 Then
Cells(i, 10).Value = "M"
ElseIf Cells(i, 7).Value Like "*Passenger Bus*" And Cells(i, 9).Value >= 1067 Then
Cells(i, 10).Value = "O"

End If

Next i
End Sub
 
Upvote 0
I think you are missing an End if
Rich (BB code):
Cells(i, 10).Value = "O"
End If
'Bus
 
Upvote 0

Forum statistics

Threads
1,214,525
Messages
6,120,051
Members
448,940
Latest member
mdusw

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top