﻿id	summary	reporter	owner	description	type	status	milestone	component	version	severity	resolution	keywords	cc
1741	Rounding:  optionally add trailing zeros	Dana		"Currently, the Round function does not pad trailing zeros onto a number that has less than the specified number.  In most cases this is good; however, there are circumstances (for example, formatting columns of numbers for printing) where having all the strings of the same length is necessary.  I would like to see an optional additional boolean parameter to specify that trailing zeros be added to bring it up to the specified number of digits (the default, of course, is don't add trailing zeros).  Alternately, a negative number for decimal places could mean to add trailing zeros.  Neither of these changes would break existing programs.

Round(""1.234"", 4, 0) or Round(""1.234"", 4)  >> 1.234
Round(""1.234"", 4, 1) or Round(""1.234"", -4) >> 1.2340"	Feature Request	closed		AutoIt		None	Rejected	round trailing zero decimal	
