Hi,
I have the following Code:
Columns("A:A").Select
Selection.Insert Shift:=xlToRight
Selection.Insert Shift:=xlToRight
Application.ScreenUpdating = False
For x = 1000 To 1 Step -1
If Range("C" & x).Font.Bold Then
Rows(x) = "R"
End If
Next
This code is supposed to shift all the data from Column A to C. Check if anything in Column C is bold. If there is than put an R in cell under Column A. My program is putting R in the entire row. How do i fix this?
Please Help.
I have the following Code:
Columns("A:A").Select
Selection.Insert Shift:=xlToRight
Selection.Insert Shift:=xlToRight
Application.ScreenUpdating = False
For x = 1000 To 1 Step -1
If Range("C" & x).Font.Bold Then
Rows(x) = "R"
End If
Next
This code is supposed to shift all the data from Column A to C. Check if anything in Column C is bold. If there is than put an R in cell under Column A. My program is putting R in the entire row. How do i fix this?
Please Help.