Our full technical support staff does not monitor this forum. If you need assistance from a member of our staff, please submit your question from the Ask a Question page.


Log in or register to post/reply in the forum.

How to round values in the Trends table display?


Mavada Oct 5, 2012 11:14 AM

As above, ive tried: Round("Server:CR1000.Table1",0)but that doesnt work...i want to have something like this:10,1 instead of 10,13245...

* Last updated by: Mavada on 10/5/2012 @ 5:44 AM *


jtrauntvein Oct 5, 2012 12:33 PM

The field selector for the table display selects a table but does not apply any expression. If you need to apply an expression to individual table fields, you will need to click on the "manage Columns" button and apply the calculations in the resulting grid.


Mavada Oct 5, 2012 12:36 PM

yeah i just noticed that, but it stil shows 2 digits behind the ,
its showing 10,80 instead of 10,8


jtrauntvein Oct 5, 2012 02:47 PM

Instead of using the Round() function, use the FormatFloatL() function instead. This will convert the value to a string which will make RTMC leave the value alone. Here is an example that I just tried that seemed to work:

FormatFloatL(temp_degf_avg, $"%.0f")


Mavada Oct 5, 2012 03:02 PM

GREAT that works perfect, thanks alot jtrauntvein!!!!

Log in or register to post/reply in the forum.