![]() |
![]() |
![]() |
|||||
![]() |
![]() |
![]() |
![]() |
![]() |
|||
| 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: * 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 |
|
|||||||
| Microsoft Office support MS Office support forum |
![]() |
|
|
LinkBack | Thread Tools |
|
|
#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 |
|
|
|
| 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 |
|
|
#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) |
|
|
|
|
|
#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 |
|
|
|
|
|
#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
__________________
Cheers macropod (MS MVP -Word) |
|
|
|
![]() |
| Thread Tools | |
|
|