Community Tip - If community subscription notifications are filling up your inbox you can set up a daily digest and get all your notifications in a single email. X
How can I input longer than single line expressions?
You can break an expression into mulitple lines at any addition. Use [Ctl-Enter] to add a:
Success!
Luc
You can break an expression into mulitple lines at any addition. Use [Ctl-Enter] to add a:
Unless you are using Mathcad Prime
Thank you Richard. I need to do it in Mathcad Prime.
Sorry, but this feature is not currently available in Prime.
In that case you are left with (at least) the following option:
e1:=....
e2:=....
e3:=....
e:=e1+e2+e3
And if you really want the expressions to be a single item, you can do essentially the same in a program.
e:=|e1<-....
|e2<-....
|e3<-....
|e1+e2+e3
Success!
Luc