excel vba 根据内容实现msgbox弹窗显示?

发布网友 发布时间:2022-04-23 21:47

我来回答

1个回答

热心网友 时间:2022-07-14 15:30

Private Sub CommandButton1_Click()
Dim i,s,arr
for i=2 to 6
arr=split(Cells(i,"D"),"-")
If Cells(i,"B") < arr(0) Or Cells(i,"B") > arr(1) Then
Cells(i,"B").Interior.ColorIndex = 3
s = s & Cells(i,"A") & vbcrlf
End If
next i
if s<>"" then MsgBox s & "超过合理范围" else msgbox "全部符合"
End Sub

声明声明:本网页内容为用户发布,旨在传播知识,不代表本网认同其观点,若有侵权等问题请及时与本网联系,我们将在第一时间删除处理。E-MAIL:11247931@qq.com