I come from the beautiful world of Obj C, which is based on the C programming language, and I\'ve fallen in love with finding quirky ways to save space. However, I\'ve looke
As an alternative you can create the following public function in a module:
Public Function iff(expr, trueR, falseR) As Variant If expr Then iff = trueR Else iff = falseR End Function
So far works for me.