01-15-2014 07:09 PM
01-15-2014 07:22 PM
01-16-2014
06:44 AM
- last edited on
05-06-2025
04:59 PM
by
Content Cleaner
This gentleman is correct. You should use Format Into String for a much more accurate solution. My original suggestion was much more crude and had room for percision loss.
I meant to reference Number to Fractional String not Number to Decimal String. That was my error and I apologize for the confusion -- we all make mistakes. But Dennis_Knutson suggests a nice way to convert your Doubles to String while also concatenating on a label. See below for explaination.
@Dennis_Knutson wrote:
As has been discussed countless times, the function CANNOT be used for the conversion of doubles. Read the help.
This is my old approach. If you test it, you do, in fact, lose percision through the casting of Double to Integer:
This will output "1" with no decimal digits.
This is what I meant to do:
This would convert the Double to a String with the 3 decimal places per the original percision you used.
This is the most elegant solution suggested by Dennis. You should probably use this suggested approach:
This will correctly output "Exposure=1000.000".
01-17-2014 10:11 AM
I make all of ma datas as string and you can see I have a result but my problem is this datas do not save.
I show also my saving icon
01-17-2014 10:26 AM