So far, I've come up with:
Range("A35").Select
ActiveCell.FormulaR1C1 = "=RC[1]&"" ""&RC[2]"
Range("A36").Select
But it does not meet my needs....any help is appreciated
LOL. No i wouldn't think it would. Try this:
Option Explicit
Sub OneCell()
Dim avalue As String, bvalue As String
avalue = ActiveCell.Value
bvalue = ActiveCell.Offset(0, 1).Value
ActiveCell.Value = avalue & " " & bvalue
ActiveCell.Offset(0, 1).ClearContents
End Sub
Sub ThreeCells()
Dim avalue As String, bvalue As String, cvalue As String
avalue = ActiveCell.Value
bvalue = ActiveCell.Offset(0, 1).Value
cvalue = ActiveCell.Offset(0, 2).Value
ActiveCell.Value = avalue & " " & bvalue & " " & cvalue
ActiveCell.Offset(0, 1).ClearContents
ActiveCell.Offset(0, 2).ClearContents
End Sub
Two macros. One for each scenario you wanted. Like you requested it will work on whatever cell you have selected when you run the macro.
I wasn't sure if you wanted to delete the whole column or just the cell contents so i put ClearContents. You could also put .Delete. I wasn't sure if you wanted a space between the second two values so i put one there anyways. Let me know.
Bookmarks