dear expert wincc
In Wincc v5.0 above , if i have data db in plc (INTEGER) , how can display iofield in format decimal .
example :
in PLC
DB10.DBW0 ==> 1512, in display wincc ===> 15.12
Thanks alot
[?]: Format Number WinCC 1512 => 15.12
-
- Posts: 27
- Joined: Sun Jul 06, 2008 3:12 pm
- Location: Indonesia
-
- Posts: 265
- Joined: Sat May 27, 2006 6:46 am
- Location: Europe
Re: [?]: Format Number WinCC 1512 => 15.12
hello, you have 2 way to do this :
1 : in tag management you use a linear scaling in the tag read from the plc
2 : in I/O filed you need a dinamic windows and insert the tag / 100
bye
1 : in tag management you use a linear scaling in the tag read from the plc
2 : in I/O filed you need a dinamic windows and insert the tag / 100
bye
-
- Posts: 131
- Joined: Tue Feb 27, 2007 7:57 pm
- Location: South Ukraine
Re: [?]: Format Number WinCC 1512 => 15.12
You must enter 'tag/100.00'PLC_ITA wrote: 2 : in I/O filed you need a dinamic windows and insert the tag / 100
This is important for decimal readings.
-
- Posts: 265
- Joined: Sat May 27, 2006 6:46 am
- Location: Europe
Re: [?]: Format Number WinCC 1512 => 15.12
Serge_n wrote:You must enter 'tag/100.00'PLC_ITA wrote: 2 : in I/O filed you need a dinamic windows and insert the tag / 100
This is important for decimal readings.
OPPS... Thank you serge_n for your detail