web-dev-qa-db-ja.com

セルのコメントを表示/非表示にするExcelのショートカットは何ですか?

セルのコメントを表示/非表示にするExcelのショートカットは何ですか?

4
Yousui

Shiftキーを押しながらF2キーを押して編集します...それ以外の場合は、右クリックオプションを使用する必要があると思います。

6
Evernoob

Alt+V、 C

これはトグルコマンドとして機能します。

6
Vinayak

Geoffrey vanWykのVBSの変更-アクティブセルのコメントのみを切り替えます

Sub Show_Hide_Comment()
'
' This macro toggles the display of selected cell's comment if one exists.
' It does not create one if there is none... for this press Ctl+F2
'
' You may use macros menu to set keyboard shortcut
'
  If Not ActiveCell.Comment Is Nothing Then
    If ActiveCell.Comment.Visible Then
        ActiveCell.Comment.Visible = False
    Else
        ActiveCell.Comment.Visible = True
    End If
  End If
End Sub
1
Moshe42

Excel 2013を実行していて、リボンの[レビュー]タブに、単一のセルのコメントの表示を切り替えるための[コメントの表示/非表示]があります。

ショートカット:Alt、R、H

0
user338599