Author Topic: Basic label numeric format  (Read 1408 times)

StefanA

  • Newbie
  • *
  • Posts: 33
    • View Profile
Basic label numeric format
« on: January 03, 2016, 03:02:09 PM »
I want to change the format of a 4 digit number from xxxx to xx,xx in a basic label. Been trying with the numeric format property but haven't been able to get it right.

Archie

  • Administrator
  • Hero Member
  • *****
  • Posts: 5262
    • View Profile
    • AdvancedHMI
Re: Basic label numeric format
« Reply #1 on: January 03, 2016, 03:41:36 PM »
NumericFormat=0.00

And possibly you may need:

ValueScaleFactor = 0.01

StefanA

  • Newbie
  • *
  • Posts: 33
    • View Profile
Re: Basic label numeric format
« Reply #2 on: January 04, 2016, 01:24:31 PM »
Right, the Scale Factor. Didn't think about that.Thanks.