Community Tip - Did you get an answer that solved your problem? Please mark it as an Accepted Solution so others with the same problem can find the answer easily. X
I want to see the product result of multypling two parametets. For example I have meaured the area and also the lenght of a hole and I need its valume to see dynamically ( such as saved analysis in measure toolbar), Does anyone know a simple way?
Solved! Go to Solution.
You can make a variable of each value and then act on them in relations.
To get the parameter for the saved analysis, use the parameter button in the relations dialog; select Feature and click on the measure feature in the model tree; insert the measure parameter.
So you would have something like
my_area=AREA:FID_20
my_length=DISTANCE:FID_21
my_query=my_area*my_length
Next, you can make an annotation &MY_QUERY[.3] to show the value
You can make a variable of each value and then act on them in relations.
To get the parameter for the saved analysis, use the parameter button in the relations dialog; select Feature and click on the measure feature in the model tree; insert the measure parameter.
So you would have something like
my_area=AREA:FID_20
my_length=DISTANCE:FID_21
my_query=my_area*my_length
Next, you can make an annotation &MY_QUERY[.3] to show the value
Thanks Antonius it worked.