Word format to Lower case!!!!

WorkinOnIt13

Board Regular
Joined
Sep 8, 2005
Messages
90
<Font color=Blue><font size=2> Is there a way anyone may know to revert Caps lock back to Lower case in Microsoft Word??? The document was originally typed in caps lock so changed the Font option, is unavailable! Meaning normally if you type it in Lowercase, you can convert to Caps, then later redo to normal Lowercase, not an option!!! Any help is appreciated!!!! Thanks guys!
 

Excel Facts

How to find 2nd largest value in a column?
MAX finds the largest value. =LARGE(A:A,2) will find the second largest. =SMALL(A:A,3) will find the third smallest
I don't really know VBA for Word, but this seems to be working for me.

Assuming you have selected the text you want to make lowercase:

Code:
Sub CapsToLower()

Selection = LCase(Selection.Text)

End Sub
 
Upvote 0
Hi

In Word 2002 you have the option to change the texts existing case to:

Sentence case
lower case
UPPER CASE
Title Case
tOGGLE cASE

so why get involved in VB?

have I missed something

John
 
Upvote 0
I know the OP was talking about the options available under Format\Font (where you can check the box for "All caps" and it will update it), but I forgot about that toggle thing.

...I need to start poking around Word more. I've forgotten a lot of what I used to know. Like the toggle thing. :roll:
 
Upvote 0
<font color=Blue>well I am using Word 2003, I think the document was created in Word 2002, so If I use word 2002, where do I go to get the change options at???
 
Upvote 0
<font color=Blue><font size=3>Nevermind guys, I figured it out, thanks to the help of Microsoft.com! Thanks again though!
 
Upvote 0
.

Wish I read the thread earlier.

Quick way to toggle case is to highlight and shift-F3. This will toggle the highlighted selection.
 
Upvote 0

Forum statistics

Threads
1,224,856
Messages
6,181,427
Members
453,040
Latest member
Santero

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top