The Computer Oracle

How to get Word to do line break on Enter rather than paragraph break?

--------------------------------------------------
Rise to the top 3% as a developer or hire one of them at Toptal: https://topt.al/25cXVn
--------------------------------------------------

Music by Eric Matyas
https://www.soundimage.org
Track title: Puzzle Island

--

Chapters
00:00 How To Get Word To Do Line Break On Enter Rather Than Paragraph Break?
00:25 Accepted Answer Score 16
00:56 Answer 2 Score 1
01:30 Answer 3 Score 0
01:52 Answer 4 Score 1
02:20 Thank you

--

Full question
https://superuser.com/questions/453555/h...

--

Content licensed under CC BY-SA
https://meta.stackexchange.com/help/lice...

--

Tags
#microsoftword #microsoftword2010

#avk47



ACCEPTED ANSWER

Score 16


Just modify your style. The default paragraph style in Word 2010 comes with a spacing of 12 pt after the paragraph. If you don't want that, set the spacing after to 0 pt. You can also check the checkbox titled "Don't add space between paragraphs of the same style" to suppress this behavior in your normal paragraphs.

You can find these settings by right-clicking your "Normal" style in the "Home" tab of the ribbon bar -> Modify... -> Format -> Paragraph.




ANSWER 2

Score 1


I had the same problem with Office XP. It would add 2 lines with Enter. I can't remember how I changed it back though. It wasn't with Line Spacing. I recently switched to 2007.

Shift + Enter is a pain for hand movement and mouse operation.


I found this (it may be a workaround as opposed to changing the programming for Enter) :

Go to:

  • Home » Paragraph » RIBBON » Spacing & Indents

  • At the bottom: Check the Box (Don't add space) » Default




ANSWER 3

Score 1


You can change the paragraphing back to the way it was by default in Word 97-2004 pretty easily.

  1. Go to the HOME section on the ribbon.
  2. Click on "CHANGE STYLES" at the end. It usually has blue and pink letters A above it.
  3. A drop down menu will appear with the option PARAGRAPH SPACING.
  4. If you hover here, you will have a list of options including "NO SPACING" which will cause Word to regard an enter stroke as a line break.

Easy!




ANSWER 4

Score 0


Hope this wil help someone special

Sub rezize_center_newline()

  Dim i As Long
  Dim shpIn As InlineShape, shp As Shape

  With ActiveDocument
    For i = 1 To .InlineShapes.Count
     With .InlineShapes(i)
        .Height = InchesToPoints(4)
        .Width = InchesToPoints(5.32)
        .Range.InsertAfter Chr(13)
    End With
Next i
For Each shpIn In ActiveDocument.InlineShapes
    shpIn.Select
    Selection.ParagraphFormat.Alignment = wdAlignParagraphCenter
Next shpIn
For Each shp In ActiveDocument.Shapes
    shp.Select
    Selection.ParagraphFormat.Alignment = wdAlignParagraphCenter
Next shp
End With