SENDER ;SENDER2 ;FIVE ;ResultOUT;Average ;1.5s ;05s ;10s ;15s ;30s ;60s ;LESS1m ,,,,,
---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------,,,,,
bw=aaaa.bbbb.cccc, RU=USER5,RT=ARCHUsers, ST=USERS2, LC=USERS3, FT=PPI ;2.16.840.1.113883.3.59.1:5678 ;PPASD ; ; 45; 3; 3; 0; 0; 0; 2; 0`
-----
So let focus on your last post. Assuming you data is in columns A:C and that you want the output in column A, then it's derived that columns B:C should be deleted.
Formula solution:
a) In D2 type: =A2$&B2&C2
b) Select column D, copy, keep selection as selected, paste special values
c) Select columns A:C, delete
This is the solution recommended for a quick & dirty & once (or a few times use)
Macro solution:
-----
[pre]Option Explicit
Sub ThreeStoogesAndDArtagnan()
' constants
' declarations
Dim I As Integer
' start
' process
With ActiveSheet
I = 2
Do Until .Cells(I, 1).Value = "" And .Cells(I, 2).Value = "" And .Cells(I, 3).Value = ""
.Cells(I, 1).Value = .Cells(I, 1).Value & .Cells(I, 2).Value & .Cells(I, 3).Value
I = I + 1
Loop
Range(.Columns(2), .Columns(3)).Delete
End With
' end
Beep
End Sub