René Nyffenegger's collection of things on the web
René Nyffenegger on Oracle - Most wanted - Feedback -
 

if then [VBA]

option explicit


sub if_then()

  dim a as long
  dim b as long

  a = 1000
  b =   42

  if a > b then
    msgBox ("a > b")
  end if

  if b < a then msgBox ("b < a")

end sub
See also other VBA stuff