I should not have used the word “result.” I mean variable.
For example, I want to find the minimum of two variables and assign it to a different variable.
a is a variable
x is a variable
minOfVariables = min(a,x)
I assume, if this is possible, one would have to have some kind of if statement, like:
if (x > a){minOfVariables = a}else{minOfVariables = x}
The reason I want to do this is because I’m doing some math on the scale scores. When doing math on these, it is important to be able to find the minimum or maximum of two variables to use later on.