W
WAMTC
Below is macro that I “made†using the Tools/Marco/Record New Macro. When I
move to next row (8 36 120 24 180 1,438 13 7,063) and press Ctrl+t I get msg
“Do you want to replace the contents of the destination cells?â€, ok/cancel
and select ok the data is placed in row 8 not current row.
Question – How do I get macro to put data in current/active row? I will move
to next row manually unless there is an easy way to move to next after macro
runs.
Thanks
Rick
Sub Txt2Table()
‘
‘ Txt2Table Macro
‘ Macro recorded 8/7/2007
‘
‘ Keyboard Shortcut: Ctrl+t
‘
Selection.TextToColumns Destination:=Range(“B8â€),
DataType:=xlFixedWidth, _
FieldInfo:=Array(Array(0, 1), Array(3, 1), Array(6, 1), Array(9, 1),
Array(11, 1), _
Array(14, 1), Array(18, 1), Array(21, 1))
End Sub
Hope I explained problem and what I am trying to do.
Thx
Rick
move to next row (8 36 120 24 180 1,438 13 7,063) and press Ctrl+t I get msg
“Do you want to replace the contents of the destination cells?â€, ok/cancel
and select ok the data is placed in row 8 not current row.
Question – How do I get macro to put data in current/active row? I will move
to next row manually unless there is an easy way to move to next after macro
runs.
Thanks
Rick
Sub Txt2Table()
‘
‘ Txt2Table Macro
‘ Macro recorded 8/7/2007
‘
‘ Keyboard Shortcut: Ctrl+t
‘
Selection.TextToColumns Destination:=Range(“B8â€),
DataType:=xlFixedWidth, _
FieldInfo:=Array(Array(0, 1), Array(3, 1), Array(6, 1), Array(9, 1),
Array(11, 1), _
Array(14, 1), Array(18, 1), Array(21, 1))
End Sub
Hope I explained problem and what I am trying to do.
Thx
Rick