Advertisement
veronikaaa86

01. Excellent Result

Sep 13th, 2022
1,203
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. Sub LiveDemo()
  2.     Dim grade As Double
  3.     grade = Range("A1")
  4.    
  5.     If grade >= 5.5 Then
  6.         Debug.Print "Excellent"
  7.     Else
  8.         Debug.Print "Poor"
  9.     End If
  10. End Sub
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement