Last active
December 6, 2024 22:08
-
-
Save s-hiiragi/a232d9be2f8f26fcdeaaf7401d193bf5 to your computer and use it in GitHub Desktop.
(Excel) オートコンプリートを切り替える
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
' オートコンプリートを切り替える | |
' | |
' 以下のオプションを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