Hello everyone,
I'm currently using the following code for a macro that replaces the one and only active cell's space for an underscore:
Sub Hello()
'Finds and replaces spaces with an nothing
ActiveCell.Value = Replace(ActiveCell.Value, " ", "_")
ActiveCell.Offset(0, 1).Select
End Sub...