Community Tip - You can change your system assigned username to something more personal in your community settings. X
Hello all,
1. I am using itos function to assign values to variables to be displayed in the drawing in a specific formt. So far its going good and itos command always rounds off the value of a dimension and then assign it to the variable for display. But in one of the part I am having this issue that its not rounding off the value of a dimension, i have taken this dimension from analysis tool and saved it as feature in the model tree as "LAENGE" (means length in English). Help me out here.
2. Also i have another problem that sometimes I want a specific dimension value not to be rounded off when it is called using itos function, what would be the function for that, which i should use in my program?
Images are attached regarding number 1 for clarification.
A "trick" I use to round numbers is, instead of just using ITOS on the number, like
ITOS ( number )
I do the rounding myself, with something like
ITOS ( floor ( number + 0.5 ) )
It makes my relations longer, but works nicely.