Home     Contact Us    
Main Board Job Seeker's Board Job Wanted Board Resume Bank Company Board Word Help Medquist New MTs Classifieds Offshore Concerns VR/Speech Recognition Tech Help Coding/Medical Billing
Gab Board Politics Comedy Stop Health Issues
ADVERTISEMENT




Serving Over 20,000 US Medical Transcriptionists

Microsoft Word Macro's

Posted By: angie on 2007-10-26
In Reply to:

How do I set up macro's on Microsoft Word 2003 for frequently used terms?


Complete Discussion Below: marks the location of current message within thread

The messages you are viewing are archived/old.
To view latest messages and participate in discussions, select the boards given in left menu


Other related messages found in our database

Macro to Search Google from Microsoft Word?
I found one on the net, but when I pasted it in, it would not work.

My version of Word is Word 97. Thanks.
Microsoft Word.. The oold Word used to do this and I'm new to 2003 Word..nm
/
There is a word macro that can change that
for you.  Not sure if it will work on your platform, though.  If you need it, just answer on here and I will post the macro so you can paste it into your program macros and assign a shortcut
No, not within SH. However, if you use Word, you can make a macro.nm
nm
When recording a macro in MS Word
what do you do in order to be able to jump from heading to heading; i.e., how do I get from HISTORY: to FINDINGS: ? Thanks for your help.
Word 2007 macro help

I sure hope someone can help me here.  I have recently started using Word 2007 and am absolutely lost!  I finally figured out how to create a macro....but now cannot figure how how to call up that macro when I need it.  does this make sense???  example, ddd stands for degenerative disc disease..when I type "ddd"  do I hit a function key, just the tab key, CTL + function key?????  can't figure this out.  please help me!


thanks.  Rita



 


Word 2007 macro help
word 2007 is completely different than previous versions.  can you tell me where the autocorrect button/tab is??????  thanks for your help.
Word 2007 macro help
there is no "tools" in word 2007, or not that I can find.
Word 2007 macro help
thanks for all the help.  I absolutely hate word 2007 and as soon as I can I will be uninstalling it and reinstalling an older version.  it is completely different from previous versions. there are no toolbars at the top but a "ribbon" which is needlessly complicated.  sorry I'm cranky.  Thanks again though.
MS Word macro question. SM

All of sudden all my macros give me the "Code Execution has been Interrupted."  Then I have to click Continue, End, Debug, or Help.


Why is this happening?  I've tried deleting the macros and re-recording them, but it keeps doing it.  HELP!  It's making me crazy.


 


How can I make a macro in word

For some reason, I am unable to use the F11 key to jump to headers within a report when I use my macroed reports in EXtext.  So, I wanted to know how I could macro to jump from header to header in the word document and use a hot key.  If I could make a macro using word, I think I could still use my macro reports. 


Thanks


Just an extremely simple Word macro SM
I'll try and explain it. I'm no Word genius, I PROMISE.

You get in a document you're typing.

Macros
Record new macro
I made mine a keyboard macro, you name it, assign it (mine happens to be alt. alt period)

Then you go:
Edit
Find
. (period space space is what that is supposed to be)
Replace . (period space)
Replace all.

In the parentheses is the keys I pushed. I don't know how else to explain it but it's the alt Key and the period Key.

There's bound to be a "real" way to do it, but I just bumbled through this way.
What version of Word? That can't be set in newer versions. I had to do a macro --sm
I hope this link works for you. It shows how to make the macro. I use alt + semicolon for it because it seemed those would be a convenient shortcut to use. H

Here's the link (you'll probably have to copy and paste it):

http://fitaly.com/board/msword/posts/1629.html


Microsoft Word
I am purchasing a new computer and obviously we all know the headaches of transferring all of Word information to a new one, or at least I dread it.  How do I save all of may Autotext and Autocorrect entries to transfer to the new Word on the new computer?  Any help is greatly appreciated!!!
Microsoft Word help

I hope I can explain this right:


I can be typing along just fine in Word, and suddenly it will "blank out", causing me to retype sometimes two or three sentences. There are times this happens three or four times per report, and times it does not happen all day. I have to stop, click with the mouse back to where I was, and retype. Does this make sense and does anyone know what I can do to get it to stop? Thanks!  


Microsoft Word help please

For the first time in my 5 years of MTing, I am going to be working in Word and I need to make macros as well as auto text and I am clueless how to do this.


I know it's a lot to ask but y'all are the best.  Can someone walk me through the steps.  You'll be my new BFF, I promise. :)


Word Macro to count Lines Strict inside

Hi,


The solutions others gave are good, but if I just needed to get the number of lines with typing (and don't need an invoice or a report), I'd use a Word macro.


The other solutions offered have this drawback: If the body of your document contains tables, the count Word gives you is vastly inflated, for Word counts each cell in that table as a line. This is not what the eye sees, and becomes problematic when you try to justify such to your client.


Below is a macro for counting what we at Emmaus call Lines Strict. (i.e. Lines with typing on them, vs Lines Extended that includes the blank lines).


To use it, copy from Public Sub through End Sub, and paste it into your macros along with your other macros. Easiest way of doing this is (after you have copied the appropriate lines):


1. Click Tools | Macros, and select an existing macro.


2. Click the Edit button.


3. Once the Visual Basic Editor opens, press Ctrl+End to move to the bottom.


4. Paste the clipboard contents.


5. Click File | Compile Normal. (If you've pasted things that don't belong, it won't compile.)


6. Click File | Close and Return to MS Word.


Merry Christmas!
vJoe
http://www.mpword.com


OOPS! I looked at the HTML code after I pasted the code into the editor on this board, and it added things that when pasted into the Visual Basic Editor in Word will not compile. Here's the code if you want to retype it, but pasting won't work. If you send me an email, I'll attach the code into a .txt document, and you won't have any problems.  vjoet@attglobal.net


Public Sub GetLinesStrictCount()
    Dim CharsStrict As Long
    Dim Count As Long
    Dim ParaswBlanks As Long
    Dim ParasWOBlanks As Long
    Dim LineswBlanks As Long
    Dim BlankLines As Long
    Dim LinesWOBlanks As Long
    Dim NumOfTables As Long
    Dim NumOfRows As Long
    Dim TableRowCount As Long
    Dim x As Integer
   
    TableRowCount = 0
    NumOfTables = 0
    NumOfRows = 0
   
    ActiveDocument.ComputeStatistics (wdStatisticCharacters)
    ActiveDocument.ComputeStatistics (wdStatisticLines)
    CharsStrict = ActiveDocument.BuiltInDocumentProperties(wdPropertyCharacters)
    ParasWOBlanks = ActiveDocument.BuiltInDocumentProperties(wdPropertyParas)
    LineswBlanks = ActiveDocument.BuiltInDocumentProperties(wdPropertyLines)


    NumOfTables = ActiveDocument.Content.Tables.Count
    If NumOfTables > 0 Then
        For x = 1 To NumOfTables
            With ActiveDocument.Content.Tables.Item(x)
                NumOfRows = NumOfRows + .Rows.Count
            End With
        Next
        TableRowCount = NumOfRows
    End If
   
    If CharsStrict > 0 Then
        ParaswBlanks = ActiveDocument.Range(wdMainTextStory).Paragraphs.Count
    Else
        ParaswBlanks = 1
    End If
       
    If LineswBlanks > 1 Then
        LineswBlanks = LineswBlanks + 1
    End If
   
    If ParaswBlanks = 1 And ParasWOBlanks = 1 Then
        BlankLines = 0
    Else
        BlankLines = ParaswBlanks - ParasWOBlanks
    End If
   
    LinesWOBlanks = LineswBlanks - BlankLines
    Count = LinesWOBlanks
   
    MsgBox "Lines Strict (with typing) = " & CStr(Count + TableRowCount)
End Sub


 


 


Setting up macro in Word for jump code...inside
(you can actually use any key on the keyboard, I actually use F3 because it doesn't seem to interfere with anyting.)

I call it a "jumpcode" and what you need to do is create a Word macro for it. For example, I use (Alt + /) to insert blanks in a document. Now if I want to jump to the blanks I use (Alt + >). In reading your question, it sounds as if the symbol you want to "jump" to is already in the document, so you would just have to define the jumpcode for that prompt.

So, first create your macro.
1. Tools - Macro - Record New Macro.
2. Name your macro (ex. Jumpcode) or use the default Macro name
3. Assign macro to Keyboard.
4. Pick what keys to assign the keyboard macro - Example Alt + J (NOTE - SOME KEYS ARE ALREADY DEFAULT ASSIGNED BY WORD. SYSTEM WILL ALERT YOU TO THIS FACT! YOU WOULD THEN PICK ANOTHER KEY OR THE DEFAULT WORD KEY WILL BE OVERWRITTEN)
5. Select Assign - Close
6. You will then notice the "record macro function" come on (symbol of a little tape cassette will appear on screen). All key strokes from this point will be recorded until you turn off record macro function.
7. Recording your macro. Since the jumpcode you want to jump to is the >" you should set it up this way:
A. Ctrl + F (the find function). This will pull up the "Find and Replace" box.
B. Type in the prompt you want to find which would be >"
C. Hit "Find Next"
D. Then close "Find and Replace" box.
E. Stop recording. (Hit the square in the record macro icon)

Now when you hit "Alt + J" system should jump to the >" prompt in your document

I do this with Microsoft Word 2000. nm
:
MICROSOFT WORD QUESTION

From time to time I try to add a word into a paragraph and it starts taking out the beginning of the next word so I end up having to type the whole paragraph again.   Today I am trying to change the first word of a normal and it starts taking out the next word.  I cannot type the wole normal again.  I hope you understand what I mean.  Does anyone have a quick fix.  TIA


In Microsoft Word, there should be a record
of changes made and who accessed the report and made it. SOmeone with more technical expertise should be able to tell you what you do.
Where can I get Microsoft Word 2002? sm

Is there a place on-line where I can purchase it and download it?  If not, where can I get a good deal on it?  I need it ASAP!


Thanks


MICROSOFT WORD/MT WORLD

I recently put installed Microsoft word 2005 in my computer. I use MT world for my job.  Every time I send something after I type to update it sits in updating document for a long time. Has any one else have this problem or have a solution.   No one else in else at the job has this problem but me. 


Guide to Microsoft Word
I have this book and I think it is well worth its price!!  It gives many short cuts that have helped me immensely in my production.  I actually got this book because I was still using WP5.1 and everyone was using/asking for Word.  I had always fought with Word even after taking a college course in Word.   I ended up using this book to help transfer all my private clients to Word and I think I am back up to, maybe even surpassing, my production rate.  I hope this helps you.
Microsoft Word question

Is there any way to have Word open up  automatically with the view screen at 125% (rather than 100%)?  Right now I have to change it each time I start it up.


Thx for any help.


HELP! how to get rid of ruler in microsoft word
I have forgotten how to get rid of the ruler in Microsoft work,  Thanks in advance
Microsoft Word question

When I type out 1st, 2nd, 3rd, how do I get the letters to type of normally instead of  like this: 3rd


I have a lot to learn about Word. :)


Microsoft Word question

When I click on a letter within a word, the whole word is automatically highlighted and selected.  Is there an option I can change so it doesn't do this?


 


Thx for any help.


Help Microsoft Word 2007

Does anyone know how to change a title of a document?  I have named my document and I have to change the name.


Thank you very much!


Barbara


 


 


 


 


 


 


 


 


 


 


 


 


 


 


 


 


 


 


 


Microsoft Word 2007

I had to do recovery on my computer and I added a newer Microsoft Office.  This is MUCH different than my old version so I wanted to see if anyone can help me out.  On old version if I used AutoText for saving smaller things after typing a couple of letters it would pop up with the info that I wanted.  I can't figure out if this new version does that or not.  From what I have read I can't find that it does, but if anyone has any information that it does still do this it would be greatly appreciated!


Microsoft Word 2000, NM
z
MT Guide to Microsoft word

How many of you have used this or are using it?  I never heard of it before and was wondering if it was worth the investment.


Question about microsoft word???

Okay I am typing a interview and am wondering how to get all the words to automatically tab over so I don't go back and have to do it manually.  It's like this


Interviewer:           Response XXXXXXXXXXXXXX ffadXXXXXXXXXXXXXXXXXXXXXXXXXX


and all words of response need to be under the response.  Hope that makes sense.


 


Microsoft Word question

I have Microsoft Word 2003 and for some reason it is not correcting the spelling on capital words (like in a heading).  I cannot figure out how to get it to correct capital words?


Thanks


You need Microsoft's Word. It is a program that requires
installation. The account sounds good at 13/cent a line. Better invest in Word (costs a bit) unless you have a kind friend who will share theirs with you.
how to indent numbers in microsoft word

I have forgotten how to make it indent the numbers automatically in Microsoft Word.  Help from anyone.  Thanks in advance


Microsoft Word margin jumping
Hello. I've had this happen before when opening MS Word and suddenly the curser jumps to the very top of the page and not at the usual 1" margin that I have set at. Does anyone know how to fix this? I don't remember how I did it last time. It just started doing this again. I've checked my margins and they are fine in page set up.Thanks.
Microsoft Word Help Please -- New Template Setup

I have done this before and for the life of my I cannot remember how I did it. Can someone help me out?  Okay.  This new doctor would like heading and numbers under each heading.  He wants me to tab over from the number to begin typing and the words to sort of "wrap" so that the second line would not return to under the number.  I will try to show it here.


Treatment:


1.     The patient will ____________________________


        the rest of the sentence would continue under the words "The patient.


Microsoft Word 2007 Frustration!!!
Every time I hit 'enter' to go to the next line (a return), it double spaces. How do I get it to just single space?

Thanks, everyone.
shortcuts for microsoft word 2003

Hi,


Does anyone know how to create shortcuts or word expansions in microsoft word?  Thanks so much!!!


 


Where Can I find Microsoft Word 2003? sm
Is this the same as Microsoft Office Word 2003? I need this particular program, and can't seem to find it on the net any place.  Any advice?
Microsoft Word question (numbering)
I started with a new company today.  Anyway, I got my review back.  It said I need to turn off my numbering macro, the numbers should be flush left.  Well, no matter what I do it always indents.  I am working with Word 2000.  I tried the help menu which did not help.  How do you make it not indent the numbers?  TIA. 
microsoft has Word training exercised on the net. NM
might help.
I use SmarType with Microsoft Office with Word 2003
I have had this problem and have even lost documents and was told by Microsoft that this is a Microsoft bug that they have no fix for. I called them and e-mailed and they said they are working on a fix. Can't give me a solution and no time frame of when they will have a patch.
Is there any way to type in microsoft word and then get the document into wordperfect?
nt
This is funny blaming it on Microsoft. SmartType only works in Word and they need to keep up with
nm
Medical Transcriptionist's Guide to Microsoft Word book
Does anybody have this book?  Is it worth the money to buy it if you are pretty comfortable creating macros and such in Word already?  Just wondering.... I am always looking for new ways to increase my speed and make things easier.  Any info would be great from someone who has this book.  Thanks! 
You can use Shorthand to make a Macro, then bring the macro up in WP. nm
nm
I need step-by-step instructions to make a macro in word that aligns automatic numbered list to the
HELP!!!!! Thanks in advance.
Re companion macro. Do you know there is already a macro
in Word that will create a document with all entries from both the normal.dot and the .acl file? The normal.dot only stores the formatted entries.
Me too - with a macro. nm
x