Microsoft Office Forums

Go Back   Microsoft Office Forums > >

Reply
 
Thread Tools Display Modes
  #1  
Old 08-27-2023, 11:07 PM
gmayor's Avatar
gmayor gmayor is offline How to select the word the insertion point is in? Windows 10 How to select the word the insertion point is in? Office 2019
Expert
 
Join Date: Aug 2014
Posts: 4,144
gmayor has much to be proud ofgmayor has much to be proud ofgmayor has much to be proud ofgmayor has much to be proud ofgmayor has much to be proud ofgmayor has much to be proud ofgmayor has much to be proud ofgmayor has much to be proud ofgmayor has much to be proud of
Default

The following should select the word the cursor is in, plus any following punctuation and sets the next character as upper case. You can add to the punctuation as required.

Code:
Sub Macro1()
Const sList As String = " ,.!?"
Dim oWord As Range
    Set oWord = Selection.Words(1)
    With oWord
        .MoveEndWhile sList
        .Text = ""
        .End = .End + 1
        .Case = wdUpperCase
    End With
    Set oWord = Nothing
End Sub

__________________
Graham Mayor - MS MVP (Word) (2002-2019)
Visit my web site for more programming tips and ready made processes www.gmayor.com
Reply With Quote
Reply

Tags
selecting text



Similar Threads
Thread Thread Starter Forum Replies Last Post
How to select the word the insertion point is in? Cursor location on first click -- insertion point stevec5088 Word 1 12-14-2016 02:45 PM
How to select the word the insertion point is in? Move Insertion Point with VBA Grasor Word VBA 2 10-11-2016 08:50 PM
Word 2013 Insertion Point stops blinking NeilSC Word 0 12-13-2013 12:19 PM
How to select the word the insertion point is in? Insertion point not working pmahoney14 Word 1 05-24-2012 04:17 PM
How to select the word the insertion point is in? wildly flashing insertion point with spinning wheel joannetk Word 4 03-10-2011 04:26 AM

Other Forums: Access Forums

All times are GMT -7. The time now is 03:59 PM.


Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2025, vBulletin Solutions Inc.
Search Engine Optimisation provided by DragonByte SEO (Lite) - vBulletin Mods & Addons Copyright © 2025 DragonByte Technologies Ltd.
MSOfficeForums.com is not affiliated with Microsoft