bfairhurst
New member
I have searched past topics and found some good examples,
C1 = ITOS(C)
Following is for C (C1) dim.
X2 = C
Y2 = FLOOR(X2)
Z2 = (X2-Y2)*100
IF Z2 == 0
C1 = ITOS(Y2) + .00
ELSE
C1 = ITOS(Y2) + . + ITOS(Z2)
ENDIF
this is what I found, it appears this is if your dimension is greater than 1.0, I have some dimensions that will be less than 1.0. For example 0.250 I have been struggling to make this work. Is this possible. Thanks!
C1 = ITOS(C)
Following is for C (C1) dim.
X2 = C
Y2 = FLOOR(X2)
Z2 = (X2-Y2)*100
IF Z2 == 0
C1 = ITOS(Y2) + .00
ELSE
C1 = ITOS(Y2) + . + ITOS(Z2)
ENDIF
this is what I found, it appears this is if your dimension is greater than 1.0, I have some dimensions that will be less than 1.0. For example 0.250 I have been struggling to make this work. Is this possible. Thanks!