AdvancedHMI Software
General Category => Support Questions => Topic started by: oqapsking on April 26, 2017, 03:31:47 PM
-
hello
what i need is the plc value is for example 234 and i wanna display it in the basic label or Analog Value Display as 23.4
when i use Digital Panel Meter i just put "1" inside decimal position property
but there is no such property in basic label or AnalogValueDisplay
so can you guys tell me how to do it?
with thanks
-
After you enter a value in PLCAddressValue, it will let you expand it down. You can then set ScaleFactor to 0.1
-
thanks man you are always helpfull
it worked
-
ok when i have a value 1.234 and i want it to display 1.234
how ?
-
Set NumericFormat to 0.000
-
i tried this
value scale factor (0.1 )
numeric format 0.000
the display is 123.400
i tried
value scale factor (1 )
numeric format 0.000
the display is 1234.000
any ideas?
-
Is the value your PLC 1.234 or 1234?
-
it is 1234
and i need to display it as 1.234
-
ScaleFactor = 0.001
NumericFormat = 0.000
-
that worked thanks man
now i understand how it works :)