[Hỏi] Tắt tự động đánh số thứ tự trong word

  • Thread starter thuthuy2000
  • Ngày gửi
T

thuthuy2000

Guest
Em gõ word nó cứ tự động list, rất khó chịu. Anh chị giúp em với ạ.
Mã:
A. a
B. b
C. c
D. d
 
  1. Bạn vào File > Options > Proofing.
  2. Click vào AutoCorrect Options, sau đó chọn Tab AutoFormat As You Type .
  3. Bỏ tích chọn Automatic bulleted lists or Automatic numbered lists.
  4. Ấn OK
Bạn cần đăng nhập để thấy đính kèm

Nguồn tham khảo :
Mã:
https://support.microsoft.com/en-us/office/turn-on-or-off-automatic-bullets-or-numbering-ac3d9d00-0bb6-4421-92a6-f73e564ce71e
 
Record Macro được như sau :
Mã:
Sub Macro1()
'
' Macro1 Macro
'
'
    With Options
        .AutoFormatAsYouTypeApplyHeadings = False
        .AutoFormatAsYouTypeApplyBorders = True
        .AutoFormatAsYouTypeApplyBulletedLists = False
        .AutoFormatAsYouTypeApplyNumberedLists = False
        .AutoFormatAsYouTypeApplyTables = True
        .AutoFormatAsYouTypeReplaceQuotes = True
        .AutoFormatAsYouTypeReplaceSymbols = True
        .AutoFormatAsYouTypeReplaceOrdinals = True
        .AutoFormatAsYouTypeReplaceFractions = False
        .AutoFormatAsYouTypeReplacePlainTextEmphasis = False
        .AutoFormatAsYouTypeReplaceHyperlinks = True
        .AutoFormatAsYouTypeFormatListItemBeginning = True
        .AutoFormatAsYouTypeDefineStyles = False
        .TabIndentKey = True
        .AutoFormatAsYouTypeApplyFirstIndents = False
        .AutoFormatAsYouTypeApplyDates = False
        .AutoFormatAsYouTypeMatchParentheses = True
        .AutoFormatAsYouTypeInsertOvers = True
        .AutoFormatAsYouTypeDeleteAutoSpaces = False
    End With
    With AutoCorrect
        .CorrectInitialCaps = False
        .CorrectSentenceCaps = False
        .CorrectDays = False
        .CorrectCapsLock = False
        .ReplaceText = False
        .ReplaceTextFromSpellingChecker = False
        .CorrectKeyboardSetting = False
        .DisplayAutoCorrectOptions = True
        .CorrectTableCells = False
    End With
  
    With Options
        .AutoFormatApplyHeadings = True
        .AutoFormatApplyLists = False
        .AutoFormatApplyBulletedLists = False
        .AutoFormatApplyOtherParas = False
        .AutoFormatReplaceQuotes = True
        .AutoFormatReplaceSymbols = True
        .AutoFormatReplaceOrdinals = True
        .AutoFormatReplaceFractions = False
        .AutoFormatReplacePlainTextEmphasis = True
        .AutoFormatReplaceHyperlinks = True
        .AutoFormatPreserveStyles = False
        .AutoFormatPlainTextWordMail = True
        .AutoFormatApplyFirstIndents = True
        .AutoFormatMatchParentheses = True
        .AutoFormatDeleteAutoSpaces = True
        .AutoFormatReplaceFarEastDashes = True
    End With
    Options.LabelSmartTags = False
End Sub
 
Top