When I use type debug.Print 4^2
The computer automatically added a ";" ,....so the code becomes debug.Print 4^;2
And the result shows 4 2 in the immediate text box
I've never seen this one before so I'm not sure. I wonder what language settings and delimiters you have in your settings, and what version of Excel (year and language) you have?
This is very interesting..
You might want to post it on the FB group here in case anyone else has heard of this
I have a strange situation
When I use type debug.Print 4^2
The computer automatically added a ";" ,....so the code becomes debug.Print 4^;2
And the result shows 4 2 in the immediate text box
Any help for this?
Hi Ng,
I've never seen this one before so I'm not sure. I wonder what language settings and delimiters you have in your settings, and what version of Excel (year and language) you have?
This is very interesting..
You might want to post it on the FB group here in case anyone else has heard of this
Thanks
Dan
NG
You have written like this write in the immediate window
debug. print 4 mod 2
rather try this way
print 4 mod 2 ( or ) ? 4 mod 2
It will work correctly.
When working in an immediate window. There is no requirement of using debug.
Excellent point!! Thanks