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! How can I define a second variable based on a previously calculated one? I calculated X and I'd like to define Y as equal to X, but I can't do it with a simple equal sign. I had to write a Given function for it.
Solved! Go to Solution.
What am I missing?
The equal sign you used is an equality sign - used specifically for comparison (as in your given/find function). What you want is the definition equal sign (written with a colon).
F1 := 10
F2 := F1
F2 = 10
Thank you!
Thank you! For some reason it didn't work, an error message popped up, that the variable is undefined. I just started a new Matchcad document and it works.