I want to select a range of a column that has names in the format "Doe, John" then apply a macro that Bolds from the first character on until it gets to the comma. I found the following macro in HELP which bolds the entire cell content, but how do I do the substring format?
Sub range1()
For Each c In ActiveCell.CurrentRegion.Cells
Selection.Font.Bold = True
Next
End Sub
Any help would be appreciated
Sub range1()
For Each c In ActiveCell.CurrentRegion.Cells
Selection.Font.Bold = True
Next
End Sub
Any help would be appreciated