Answers for "vb ternary"

VBA
0

vb ternary

Dim foo = 3
Dim bar = If(foo < 3, "yes", "no") ' "no"
Dim baz = If(foo < 4, "yes", "no") ' "yes"
Posted by: Guest on May-14-2020

Code answers related to "VBA"

Browse Popular Code Answers by Language