I am a total coding amateur so please don't be too harsh--this is my first time posting my rudimentary code.
Problem is outlined below:
Sub Macro1()
LastRow = Cells(Rows.Count, 2).End(xlUp).Row
RptRows = LastRow / 5
Rows("5:5").Select
For x_rpts = 1 To RptRows
'now i need to start at current row, always row 5, and add 4 to row number, go to that row, select it, and make it bold
'then repeat from current row, go down four rows and repeat RptRows # times--the looping actually works--just stuck on the code to get row number, add 4 to it and move on
Next x_rpts
End Sub
Problem is outlined below:
Sub Macro1()
LastRow = Cells(Rows.Count, 2).End(xlUp).Row
RptRows = LastRow / 5
Rows("5:5").Select
For x_rpts = 1 To RptRows
'now i need to start at current row, always row 5, and add 4 to row number, go to that row, select it, and make it bold
'then repeat from current row, go down four rows and repeat RptRows # times--the looping actually works--just stuck on the code to get row number, add 4 to it and move on
Next x_rpts
End Sub