Community Tip - When posting, your subject should be specific and summarize your question. Here are some additional tips on asking a great question. X
Hi,
Could any one help me on this, I would like to get a list of all what a program doing, just for checking, I am getting the correct results. but still I would like to see how it works, any advise is very appreciated.
Also can I get a time estimate Mathcad spend in each individual program?
Thanks for any help!
You can use the trace feature for your first query and use the timer functions in the attached worksheet for your second.
Mike
Could any one help me on this, I would like to get a list of all what a program doing, just for checking, I am getting the correct results. but still I would like to see how it works, any advise is very appreciated.
Look up the "trace" function.
Also can I get a time estimate Mathcad spend in each individual program?
Immediately before the prgram type
t1:time(0)
Immediately after the program type
t2:time(0)
t2-t1=
Then hit Ctrl F9 to recalculate the entire worksheet (if you don't do this the reported time will not be accuate!)