if statements text
if statements text
(OP)
Curious, there is the "if statement and if function" options, but can you have MathCAD output text messages from an if statement much like Excel does?
eg If x > 1 then design is sufficient
x < 1 then design is deficient
eg If x > 1 then design is sufficient
x < 1 then design is deficient
RE: if statements text
if(x>1,"Great!","Bummer!")
TTFN
RE: if statements text
v1:="Great"
v2:="Bummer"
if(x>1,v1,v2)
Bung
Life is non-linear...
RE: if statements text
RE: if statements text
- Go to "Insert"/"Area"
- Write inside the if statements.
- Double click in one of the the arrow to hide the text and statements.
RE: if statements text