06-18-2013 09:00 AM
Hi Everyone,
I'm trying to convert a digital control with min as unit, to a string.
The matter is that it will convert it to seconds before it updates the string indicator.
I noticed that the "format into string" will always convert first to the base unit (unit multiple value to unit value conversion), just like kW to W (10 kW will output 10000 W) for watt unit.
Is there a way to format the input value without this conversion to the base unit first ?
Thanks to you...
Solved! Go to Solution.
06-18-2013 09:46 AM
If you look up the Format Specifier Syntax in the LabVIEW help, you will see a Unit option.
Here is the format you want to keep the string in minutes: %{min}g
06-19-2013 04:02 AM
Thanks crossrulz,
Didn't know about this one...
Cheers