Excel VBA Excel 2007

Joined
Apr 1, 2013
Messages
1
Reaction score
0
I am new to this forum,

I am working with VBA excel 2007.

Query: While one macro is running in excel, can we execute another macro. e.g, I have two command box on single excel sheet. Both are programmed in one macro, "START" "STOP".

Please give me your opinion

Regards,
GanjiS
 
Need help on this Excel 2003. subtract days and hour and convert it to minutes.
example:
A1 = April 1, 2013 6:30 AM
B1 = April 2, 2013 5:30 AM
Answer C1 = A1-B1 = 33,120 Minutes.

Pls. help me on this!
 
@ GanjiS5090 you can not run two commands at a time in vba.
@RONELO you should start a new thread for new question any ways:
we will get value in negative if we subtract the value you are using. You can use this formula to do this:
=HOUR(A1-B1) * 60
 
@ GanjiS5090

Perhaps if you provide more detail about what you are actually trying to do, another solution may be reached.
 
Back
Top