I created a macro in bold type, the strange thing is that it only comes
out bold every other time! How do I resolve this..Thank you

Re: macro help by Tony

Tony
Wed Feb 15 08:54:38 CST 2006

If you want to give us a fighting chance of helping you resolve it, you
show us the code.

My *guess* is that you have a line like this ..

Selection.Font.Bold = Not Selection.Font.Bold

when you really want one like this ...

Selection.Font.Bold = True

--
Enjoy,
Tony


"David" <ddavidson@adelphia.net> wrote in message
news:1140011996.378443.247540@o13g2000cwo.googlegroups.com...
> I created a macro in bold type, the strange thing is that it only comes
> out bold every other time! How do I resolve this..Thank you
>



Re: macro help by David

David
Wed Feb 15 09:53:33 CST 2006

Thank you Thank you Thank you


Re: macro help by David

David
Thu Feb 16 07:56:37 CST 2006

It did work but is there a way to make this a default setting so I do
not have to repeat this step every day? Thanks for the help!


Re: macro help by Tony

Tony
Thu Feb 16 08:46:36 CST 2006

We really need a bit more information. What exactly are you doing every day?

Can you post your code, and a bit more detail - I'm sure it can be sorted.

--
Enjoy,
Tony


"David" <ddavidson@adelphia.net> wrote in message
news:1140098197.272651.78800@g14g2000cwa.googlegroups.com...
> It did work but is there a way to make this a default setting so I do
> not have to repeat this step every day? Thanks for the help!
>



Re: macro help by David

David
Thu Feb 16 18:02:38 CST 2006

On my laptop (don't have it home), in Microsoft Word, I create a Macro,
in bold for the date as I need to dictate patient progress notes and
using the macro makes it easier. So each day I record a new Macro, in
bold, for the date. The problem is, unless I change (under macro edit)
Selection Font.Bold=True (and I need to do that manually), every other
time I press the macro keys it comes out plain type and not bold! I
hope this makes sense!


Re: macro help by Cindy

Cindy
Mon Feb 20 04:14:28 CST 2006

Hi David,

> On my laptop (don't have it home), in Microsoft Word, I create a Macro,
> in bold for the date as I need to dictate patient progress notes and
> using the macro makes it easier. So each day I record a new Macro, in
> bold, for the date. The problem is, unless I change (under macro edit)
> Selection Font.Bold=True (and I need to do that manually), every other
> time I press the macro keys it comes out plain type and not bold! I
> hope this makes sense!
>
So, you're requirement is a macro that inserts the current day's date and
formats it bold? Does this work for you?

Sub InsertTheDate()
Dim rng as Word.Range

Set rng = Selection.Range
rng.Text = Format(Date, "mmmm d, yyyy")
rng.Bold = True
End Sub

Cindy Meister
INTER-Solutions, Switzerland
http://homepage.swissonline.ch/cindymeister (last update Jun 8 2004)
http://www.word.mvps.org

This reply is posted in the Newsgroup; please post any follow question or
reply in the newsgroup and not by e-mail :-)