Decimal Text

omyvadiyaomyvadiya Member Posts: 124
I have a text value as 86:24
I want to multiply this value to a X value, so i want the 86:24 as 86.24.

I can evaluate and bring the 2 values seperately by using copystr as 86 and 24 seperately. But how can i concatanate them and bring a decimal value as 86.24

Comments

  • MBergerMBerger Member Posts: 413
    Evaluate(DecimalVariable, ConvertSTR(DecimalAsText,':','.')) ;
    
    Instead of getting the integer and decimal parts of your original text value, i used ConvertStr to replace the : with a .
Sign In or Register to comment.