Decimal Round Off

How do i handle the decimal round off (avoid greater than 0.5 getting rounded of 1).

In what context?

to display the derived values

Using what component do you want to display the values?

To display timing based part count.Presently the count doesn’t change till it crosses 0.5 and jumps to value related to 1 because of the upper round off.

have you set the datatype of your component to double or float instead of integer?

it is integer

integers don’t work with decimals, you’ll have to use either doubles or floats.

Thanks