lezawang
Well-known Member
- Joined
- Mar 27, 2016
- Messages
- 1,805
- Office Version
- 2016
- Platform
- Windows
Hi
I just wanted to know why excel is not consistent here. I wrote the code below. When I call Data() excel will remove () and keep Date only; However when I used Time(), excel will keep the ()
It is not big issue but curious why there is not consistency here.
I just wanted to know why excel is not consistent here. I wrote the code below. When I call Data() excel will remove () and keep Date only; However when I used Time(), excel will keep the ()
It is not big issue but curious why there is not consistency here.
Code:
Sub mytest2()
MsgBox Date
End Sub
Code:
Sub mytest3()
MsgBox Time()
End Sub