excel vba select case语句的使用方法

发布网友 发布时间:2022-04-22 08:16

我来回答

2个回答

热心网友 时间:2023-10-01 19:09

不明白你说的,
但你可以仿照下面的语法自己写

Case语句的语法如下:
Select Case 测试表达式
Case Is 条件1
如果条件1为真时执行的语句
Case Is 条件2
如果条件2为真时执行的语句
Case Is 条件N
如果条件N为真时执行的语句
End Select
例如,我们来比较几个数字:
Select Case myNumber
Case Is <10
MsgBox "The number is less than 10"
Case 11
MsgBox "You entered eleven."
Case Is >=100
MsgBox "The number is greater than or equal to 100."
Case Else
MsgBox "The number is between 12 and 99."
End Select
假设变量myNumber为120,那么第三个Case子句为真,并且只有Case Is >=100和Case Else之间的语句会被执行

热心网友 时间:2023-10-01 19:09

用for 语句+if语句可以实现
Sub dd()
For myrow = 6 To 10
If Range("F" & myrow).Value <> 0 And Len(Trim(Range("E" & myrow).Value)) = 0 Then
MsgBox "数据错误", , "E" & myrow
End If
Next
End Sub

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