Here is a macro that I tried writing, however I can't get it to run...
Sub Indent_Row()
Dim LR As Long
LR = ActiveSheet.Cells(Rows.Count, "B").End(xlUp).Row
For i = LR To 3 Step -1
If ActiveSheet.Cells(i, "B") = "Days" _
Then cell.Select
Selection.IndentLevel = 2
Next i
End Sub
I'm getting my error in the Select area. Any help would be awesome, thank you for reading my post. --Ben
Sub Indent_Row()
Dim LR As Long
LR = ActiveSheet.Cells(Rows.Count, "B").End(xlUp).Row
For i = LR To 3 Step -1
If ActiveSheet.Cells(i, "B") = "Days" _
Then cell.Select
Selection.IndentLevel = 2
Next i
End Sub
I'm getting my error in the Select area. Any help would be awesome, thank you for reading my post. --Ben