Community Tip - Stay updated on what is happening on the PTC Community by subscribing to PTC Community Announcements. X
Hello,
How can i make the displayed values in the resulting matrix show all the input values, and also show all the resulting calculation to show all the results. if you look at the number of input rows for load is more than calculated value for Load( matrix on right). it shows few dots. I have uploaded mathcad15 sheet. Even the following caluclations in the same sheet have the same issue. I could expand them to show all values.
Thanks,
Sam
Solved! Go to Solution.
Most probably by separating the assignment and the evaluation. So instead of:
Load := (Load) * kip =
you write:
Load := (Load) * kip
Load =
Success!
Luc
Most probably by separating the assignment and the evaluation. So instead of:
Load := (Load) * kip =
you write:
Load := (Load) * kip
Load =
Success!
Luc
Thank you Luc!
I never knew that made a difference in the evaluation display.
Regards,
Sam
You don't want to know all the havoc that combining an assignment and evaluation in one expression can create.
Success!
Luc