10-11-2022 04:53 AM
How do you retain decimal places with this example? I am busy reading from 5 flow meters and it keeps rounding down the flow rates to 1 significant figure. I have tried messing around with the format string but keeps round down the flow rates to 1 significant figure.
10-11-2022 05:05 AM
Hi Brasslike,
@Brasslike wrote:
How do you retain decimal places with this example? I am busy reading from 5 flow meters and it keeps rounding down the flow rates to 1 significant figure. I have tried messing around with the format string but keeps round down the flow rates to 1 significant figure.
Which string do you receive?
Which formatstring do you mess with - and in which way do you mess around?
Mind to share your VI with typical data included?
10-11-2022 05:25 AM
Dear GerdW
I was messing with the format string on the "spreadsheet string to array" function. I do not know how to send you the data but here is a screenshot with some probe readings.
10-11-2022 05:46 AM - edited 10-11-2022 05:47 AM
@Brasslike wrote:
Dear GerdW
I was messing with the format string on the "spreadsheet string to array" function. I do not know how to send you the data but here is a screenshot with some probe readings.
Hi,
your system seems to be using a comma (,) as decimal point. Try to use "%.;%5.2f" as format string, which will use a point as decimal point.
UliB