when i do =CONCATENATE(“Horna “,lenx,”- 1D”) to create name of component sometime this little bad bad numbers apear. i dont understand why . because =round((current(“lenx”))*2.54,1) worksjust exactlly how it suppose to.
without the file can not work out the cause, (small added fractions can be evidence of a scaling issue) however rounding the result in the above formula should fix it
CONCATENATE(“Horna “,round(lenx,1),”- 1D”)
also try = “Horna “ & lenx & "- 1D”, this may narrow down the error to a conversion within the concatenate formula