G Guest Jan 9, 2006 #1 IS there a keyword in Visual Basic that recognizes whether a number is odd or even.
N Niek Otten Jan 9, 2006 #2 If you have Analysis Toolpak loaded and set a reference to it in VBA, then ISODD() and ISEVEN() are available
If you have Analysis Toolpak loaded and set a reference to it in VBA, then ISODD() and ISEVEN() are available
B Bernard Liengme Jan 9, 2006 #3 You could 'roll your own' Function test(num) As Boolean test = (num Mod 2 = 0) End Function
G Guest Jan 16, 2006 #4 Could you explain a little more on how to call these functions and an exampl of code for them. How t oset a reference? Thanks in advance.
Could you explain a little more on how to call these functions and an exampl of code for them. How t oset a reference? Thanks in advance.