美文网首页
Excel基础教程——IF判断

Excel基础教程——IF判断

作者: 林万程 | 来源:发表于2017-03-01 20:38 被阅读30次

Sub 过程名()
a = 100
b = 1

If a > b Then Debug.Print "大于"
'若 2>1 时 立即窗口.显示 大于

'多行
If a > b Then
    Debug.Print "大于"
End If

'否则
If a > b Then
    Debug.Print "大于"
Else
    Debug.Print "小于"
End If

'否则若
If a > b Then
    Debug.Print "大于"
ElseIf a = b Then
    Debug.Print "等于"
Else
    Debug.Print "小于"
End If

End Sub

相关文章

网友评论

      本文标题:Excel基础教程——IF判断

      本文链接:https://www.haomeiwen.com/subject/yjucgttx.html