Welcome to Tech Support Forum home to more then 136,000 problems solved. Issues have included: Spyware, Malware, Virus Issues, Windows, Microsoft, Linux, Networking, Security, Hardware, and Gaming Getting your problem solved is as easy as:
1. Registering for a free account
2. Asking your question
3. Receiving an answer

Registered members:
* Get free support
* Communicate privately with other members (PM).
* Removal of this message
* See fewer ads.
* And much more..

 



Want to know how to post a question? click here Having problems with spyware and pop-ups? First Steps
Go Back   Tech Support Forum > Microsoft Support > Microsoft Office support
User Name
Password
Site Map Register Donate Rules Blogs Mark Forums Read


Microsoft Office support MS Office support forum

Reply
 
LinkBack Thread Tools
Old 10-29-2009, 11:34 PM   #1 (permalink)
Registered User
 
Join Date: Apr 2005
Posts: 4
OS: XP


Macro Help Needed

Hi,

I have a document that I need help with.....macro-wise anyway. The document, a sample of which is attached, is an interview. I need a macro that numbers each line of the interview so that a certain reference in the interview can be referenced quickly. The numbers can be before or after the line. The lines can number in the thousands so I really need a macro to do this. Can anyone help or show me how to do it? Thanks in advance.

Raven
Attached Files
File Type: doc Test.doc (20.5 KB, 0 views)
raven3255 is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Reddit!
Reply With Quote
Important Information
Join the #1 Tech Support Forum Today - It's Totally Free!

TechSupportForum.com is a leading support website for your computer needs. We offer free, friendly and personalized computer support. Why pay to have your computer fixed when you can do it for free.

Join TechSupportforum.com Today - Click Here

Old 10-30-2009, 03:11 AM   #2 (permalink)
TSF Enthusiast
 
Join Date: Apr 2008
Location: Australia
Posts: 559
OS: Vista


Re: Macro Help Needed

Hi Raven,

You can number all lines without a macro. Goto File|Page Setup|Layout>Line Numbers>Add line numbering and select the options you want.

Done any other way is problematic, since a change in printer driver, page layout (eg margins), etc can cause a static numbering system (the kind you'd get with a macro) to get messed up. Plus, unless you use a two column table, with the line numbers in one columns and the Q&A stuff in the other, your macro-generated line numbers will have to become part of the Q&A stuff itself. Ugly.
__________________
Cheers
macropod
(MS MVP -Word)
macropod is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Reddit!
Reply With Quote
Old 10-30-2009, 09:24 AM   #3 (permalink)
Registered User
 
Join Date: Apr 2005
Posts: 4
OS: XP


Re: Macro Help Needed

Thanks Macropod for the quick response. I'll try that.

Raven
raven3255 is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Reddit!
Reply With Quote
Old 11-02-2009, 05:15 PM   #4 (permalink)
Registered User
 
Join Date: Apr 2005
Posts: 4
OS: XP


Re: Macro Help Needed

Hi Macropod,

The template I'm trying to do is for a college group. They want to experiment with a macro anyway. Would you mind showing me how to construct the numbering system? I'm aware it won't be dynamic but that's not what they want anyway. Thanks in advance.

Raven
raven3255 is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Reddit!
Reply With Quote
Old 11-03-2009, 12:16 AM   #5 (permalink)
TSF Enthusiast
 
Join Date: Apr 2008
Location: Australia
Posts: 559
OS: Vista


Re: Macro Help Needed

H Raven,

Here's a sample macro, for use with a document formatted as a single two-column table. The macro puts the line numbers in the left column:
Code:
Sub Demo()
Dim i As Integer, strTxt As String
With ActiveDocument
  For i = 1 To .ComputeStatistics(wdStatisticLines) - 2
      strTxt = strTxt & i & Chr(11)
  Next
  strTxt = strTxt & i
  .Tables(1).Columns(1).Cells(1).Range.Text = strTxt
End With
End Sub
Note that, if your document has paragraphs with non-standard font sizes and paragraphs formatted with leading/trailing spaces, the line numbers won't line up with the lines to which they relate. Coding a macro to handle all possible scenarios could be a complex task.
__________________
Cheers
macropod
(MS MVP -Word)
macropod is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Reddit!
Reply With Quote
Old 11-03-2009, 11:26 AM   #6 (permalink)
Registered User
 
Join Date: Apr 2005
Posts: 4
OS: XP


Re: Macro Help Needed

Thanks Macropod,

I'll give a try. Appreciate it.

Raven
raven3255 is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Reddit!
Reply With Quote
Reply


Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

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




All times are GMT -7. The time now is 01:17 PM.



Copyright 2001 - 2009, Tech Support Forum
Home Tips Plus | Outdoor Basecamp | Automotive Support Forum

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85