INTERACT FORUM
More => Old Versions => Media Center 14 (Development Ended) => Topic started by: badger on February 27, 2010, 12:00:13 pm
-
I am importing DVD "length" (which is in seconds) from PVD into a custom field which i divide by 60 ([length]/60). Is there any way to round the result to the integer... or something less than the 8 or 9 decimals it now reports?
-
try: formatnumber([Custom Field],0)
So, your custom library field contains the data, and you use the above expression in your views to display the data in the format specified.
-marko
-
Thank you. I ended up with ........ formatnumber(math([Length]/60),0) for display.