Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 1
Default Repeating macro

I have a document which I want to format for excel. I am converting text to columns. I want it to do one group, go down 3 rows then convert the next 3. I want it to do this all the way to the end of my data. I know it can be accomplished easily, but I can't do it. I am attaching the code and would appreciate any and all assistance.

Sub converttexttocolums()
'
' converttexttocolums Macro
' Macro recorded 12/05/2003 by Michael B. Dean
'
' Keyboard Shortcut: Ctrl+h
'
ActiveCell.Range("A1:A3").Select
Selection.TextToColumns Destination:=ActiveCell, DataType:=xlFixedWidth, _
FieldInfo:=Array(Array(0, 1), Array(19, 1), Array(26, 1), Array(39, 1), Array(48, 1), _
Array(71, 1), Array(78, 1), Array(91, 1), Array(104, 1), Array(117, 1), Array(136, 1), _
Array(149, 1), Array(157, 1), Array(168, 1))
End Sub
  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 11,272
Default Repeating macro

Michael,

Try this

Sub converttexttocolums()
Dim cLastRow As Long
Dim i As Long

cLastRow = Cells(Rows.Count, "A").End(xlUp).Row
For i = 4 To cLastRow Step 3
Range("A" & i & ":A" & i + 2).TextToColumns Destination:=ActiveCell,
_
DataType:=xlFixedWidth, _
FieldInfo:=Array(Array(0,
1), _
Array(19, 1), Array(26,
1), _
Array(39, 1), Array(48,
1), _
Array(71, 1), Array(78,
1), _
Array(91, 1), Array(104,
1), _
Array(117, 1), Array(136,
1), _
Array(149, 1), Array(157,
1), Array(168, 1))
Next i
End Sub


--

HTH

Bob Phillips
... looking out across Poole Harbour to the Purbecks
(remove nothere from the email address if mailing direct)

"Michael" wrote in message
...
I have a document which I want to format for excel. I am converting text

to columns. I want it to do one group, go down 3 rows then convert the next
3. I want it to do this all the way to the end of my data. I know it can
be accomplished easily, but I can't do it. I am attaching the code and
would appreciate any and all assistance.

Sub converttexttocolums()
'
' converttexttocolums Macro
' Macro recorded 12/05/2003 by Michael B. Dean
'
' Keyboard Shortcut: Ctrl+h
'
ActiveCell.Range("A1:A3").Select
Selection.TextToColumns Destination:=ActiveCell,

DataType:=xlFixedWidth, _
FieldInfo:=Array(Array(0, 1), Array(19, 1), Array(26, 1),

Array(39, 1), Array(48, 1), _
Array(71, 1), Array(78, 1), Array(91, 1), Array(104, 1),

Array(117, 1), Array(136, 1), _
Array(149, 1), Array(157, 1), Array(168, 1))
End Sub



  #3   Report Post  
Posted to microsoft.public.excel.programming
No Name
 
Posts: n/a
Default Repeating macro

I'll bet this will work even better. Seems like you're
trying to clean up a fixed width data file. Just open it
directly into Excel from a .txt or .prn file with this
command:

Workbooks.OpenText Filename:="C:\Docs\MyData.prn",
Origin:=xlWindows, _
StartRow:=1, DataType:=xlFixedWidth, _
FieldInfo:=Array(Array(0, 1), Array(19, 1), Array(26, 1),
Array(39, 1), Array(48, 1), _
Array(71, 1), Array(78, 1), Array(91, 1), Array(104, 1),
Array(117, 1), Array(136, 1), _
Array(149, 1), Array(157, 1), Array(168, 1))

If you really have to do this row by row...

'Select three cells in one row
Range(ActiveCell, ActiveCell.Offset(0, 2)).Select

While ActiveCell < ""
'Do your text to column conversion
'Selection.TextToColumns
Selection.Font.Bold = True
'move down a row leaving 3 cells selected
Selection.Offset(1, 0).Select
Wend


-- Dory Owen

  #4   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 1
Default Repeating macro

I left my little test line of turning text bold in that
code I gave you. Sorry. Ignore that.

Here's the code:


'Select three cells in one row
Range(ActiveCell, ActiveCell.Offset(0, 2)).Select

While ActiveCell < ""
'Do your text to column conversion
Selection.TextToColumns...etc...

'move down a row leaving 3 cells selected
Selection.Offset(1, 0).Select
Wend

Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
repeating macro dwake Excel Discussion (Misc queries) 2 December 1st 09 10:31 PM
macro repeating getting the data ivy Excel Discussion (Misc queries) 1 November 19th 08 02:29 AM
repeating a macro tylermdsm Excel Discussion (Misc queries) 1 January 31st 08 11:20 PM
Repeating Macro Dino Excel Discussion (Misc queries) 3 February 15th 06 03:58 AM
Repeating (Looping) a Macro David Patterson Excel Programming 10 August 5th 03 04:27 AM


All times are GMT +1. The time now is 03:14 PM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"