赞
踩
1.简单的弹出一个消息
MsgBox ("Common Msg")
2.显示某个单元格的信息
MsgBox "Cell A1 is " & Range("A1").Value
3.加入换行
MsgBox "Line 1 Content" & vbNewLine & "Line 2 Content"