-
>= problem
I have a macro and a function. I have a >= in both and they are working differently. When I step into the macro and I get to the >= point where it should break, it will show values when I mouse over 12>=12 but then it will skip to else. Any thoughts?
-
Re: >= problem
would be helpful to post some code.... what kind of objects are you comparing?
-
Re: >= problem
depending how the numbers are calculated there may be some really small decimal part, even though it does not show, try something like
cint(12) >= cint(12)
or use the round function if you have some decimal part