![]() |
|
|
|
#1
|
|||
|
|||
|
Is there shortcut for selecting the paragraph where the cursor is currently positioned? I know that CTRL+LEFT CLICK do the job, but can it be done without the mouse? I also noticed that hitting F8 a few times will also select the paragraph, but I find that this method is functionaly different compared to the above method. |
|
#2
|
|||
|
|||
|
There is no such keyboard shortcut. Hitting F8 four times will select the paragraph, but you are correct that this is not the same. Triple-clicking (left-click) selects a paragraph.
You could save the following macro in your Normal template and assign a keyboard shortcut to it if you wanted. Code:
Sub SelectCurrentParagraph()
' Select current paragraph
'
Selection.Paragraphs(1).Range.Select
End Sub
|
|
#3
|
|||
|
|||
|
Ctrl+Up to go to the beginning of the current paragraph.
Ctrl+Shift+Down to select the whole paragraph. |
|
| Thread Tools | |
| Display Modes | |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
compare each paragraph with the preceding paragraph
|
cyraxote | Word VBA | 6 | 10-09-2015 08:03 AM |
| Selecting Texts | mohsen.amiri | Word | 5 | 02-19-2015 11:50 PM |
Selecting First Columns
|
mohsen.amiri | Word Tables | 1 | 09-01-2014 01:08 AM |
Narrow Paragraph to Wide Paragraph HELP
|
icloudy | Word | 1 | 12-09-2012 03:49 PM |
| Selecting a Text Box | gajesh | Word | 0 | 09-02-2009 11:45 PM |