セルのコメントを表示/非表示にするExcelのショートカットは何ですか?
Shiftキーを押しながらF2キーを押して編集します...それ以外の場合は、右クリックオプションを使用する必要があると思います。
Alt+V、 C
これはトグルコマンドとして機能します。
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
Excel 2013を実行していて、リボンの[レビュー]タブに、単一のセルのコメントの表示を切り替えるための[コメントの表示/非表示]があります。
ショートカット:Alt、R、H