Skip to content

Instantly share code, notes, and snippets.

@s-hiiragi
Last active December 6, 2024 22:08
Show Gist options
  • Save s-hiiragi/a232d9be2f8f26fcdeaaf7401d193bf5 to your computer and use it in GitHub Desktop.
Save s-hiiragi/a232d9be2f8f26fcdeaaf7401d193bf5 to your computer and use it in GitHub Desktop.
(Excel) オートコンプリートを切り替える
' オートコンプリートを切り替える
'
' 以下のオプションをON/OFFします
' オプション>詳細設定>編集オプション>オートコンプリートを有効にする
'
Sub オートコンプリート切替()
Application.EnableAutoComplete = Not Application.EnableAutoComplete
MsgBox "オートコンプリートを" & IIf(Application.EnableAutoComplete, "有効", "無効") & "にしました"
End Sub
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment