Modify_inc
Board Regular
- Joined
- Feb 26, 2009
- Messages
- 77
- Office Version
- 2016
- Platform
- Windows
I'm trying to move only cells in column C that are bold to the adjacent cell B, then plus one roll down so that they align with the non bold text beside it
Ex:
C1 Bold Text Here
C2 Non Bold Text Here
C3 Bold Text Here
C4 Non Bold Text Here
So, I need to get C1 moved to B2, and C3 moved to B4. This pattern continues for 500 times.
Basically, all the odd numbers are bold, and the even are non bold.
I'm able to get them moved to the B column, but I haven't figured out how to get them aligned up as I stated above. My vba is severely lacking, but here is what I have so far. Any suggestions would be awesome!
Ex:
C1 Bold Text Here
C2 Non Bold Text Here
C3 Bold Text Here
C4 Non Bold Text Here
So, I need to get C1 moved to B2, and C3 moved to B4. This pattern continues for 500 times.
Basically, all the odd numbers are bold, and the even are non bold.
I'm able to get them moved to the B column, but I haven't figured out how to get them aligned up as I stated above. My vba is severely lacking, but here is what I have so far. Any suggestions would be awesome!
Code:
Sub Move_Bold()
For Each cell In [C3:C500]
If cell.Font.Bold = True Then
Debug.Print cell.Row
cell.Cut Range("B" & Range("B65536").End(xlUp).Row + 1)
End If
Next cell
End Sub