EXCEL中如何把B和C列变成A列的批注

2025-03-28 07:03:58
推荐回答(2个)
回答(1):

使用宏
Sub Macro1()
Dim i
On Error Resume Next
For i = 1 To 10
Cells(i, "A").AddComment
Cells(i, "A").Comment.Text Text:=Cells(i, "B").Text & " and " & Cells(i, "C").Text
Next i
End SubEnd Sub

回答(2):

复制---选择性粘贴---选择勾选批注