Computing.Net > Forums > Office Software > Macro in word

Computer Problems? Computing.Net has over 1,000,000 posts about all things technology related! Over 90% answered within 24 hours! Click here to start participating now! Also, be sure to check out the New User Guide.

Macro in word

Reply to Message Icon

Name: Harry
Date: August 13, 2005 at 13:46:34 Pacific
OS: win XP Pro
CPU/Ram: 496 MB Ram
Comment:

I have a friend who just graduated as a medical transcriptionist. She took this course on line.

Here is how we might be able to help her. She gets her work via the internet and the company has a template that she has to follow when transcribing. That template comes with many asterisks (*), all have to be removed prior to uploading the final transcription.

She can use Ctrl/F and delete as they appear. However can a macro be created to do this task?

There is a great deal of info via google on macros. It's just a lot easier asking the forum than to start learning a new trick.

Thank you very much, if someone can help we would be very appreciative.

Thank you

Harry



Sponsored Link
Ads by Google

Response Number 1
Name: Jaxter25
Date: August 26, 2005 at 15:52:20 Pacific
Reply:

Yes a macro could be used.

'''Copy Here

Sub Macro1()

Selection.Find.ClearFormatting
Selection.Find.Replacement.ClearFormatting
With Selection.Find
.Text = "*"
.Replacement.Text = ""
.Forward = True
.Wrap = wdFindContinue
.Format = False
.MatchCase = False
.MatchWholeWord = False
.MatchWildcards = False
.MatchSoundsLike = False
.MatchAllWordForms = False
End With
Selection.Find.Execute Replace:=wdReplaceAll
End Sub

'''End copy

This will remove all asterix from the text.


0
Reply to Message Icon

Related Posts

See More







Post Locked

This post is quite old and has been locked from receiving new replies. Please create a new posting instead.


Go to Office Software Forum Home


Sponsored links

Ads by Google


Results for: Macro in word

Simple Macros in Word www.computing.net/answers/office/simple-macros-in-word/2198.html

macros in Word, Selected Text probl www.computing.net/answers/office/macros-in-word-selected-text-probl/7055.html

macros in word www.computing.net/answers/office/macros-in-word/9168.html