Home
Search
Tell a Friend
ABS() Array() ASC() CHR() CInt() CStr() Date() DateAdd() DateDiff() DatePart() DateSerial() DateValue() Day() Fix() FormatCurrency() FormatDateTime() FormatNumber() FormatPercent() Hour() InStr() InStrRev() Int() IsArray() IsDate() IsEmpty() IsNull() IsNumeric() IsObject() Join() LBound() LCase() Left() Len() LTrim() Mid() Minute() Month() MonthName() Now() Replace() RGB() Right() Rnd() Round() RTrim() Second() Space() Split() Sqr() strComp() String() StrReverse() Time() TimeSerial() TimeValue() TypeName() UBound() UCase() VarType() WeekDay() WeekDayName() Year()
|
Round() Purpose:Returns a number rounded to a specified number of decimal places. DataType:Long Syntax:Round (expression [, numRight]) Arguments:"expression" is any valid numeric expression to be rounded;
"numRight" (optional) is any numeric expression used to indicate the number of digits to the right of the decimal point Sample: response.write Round(443.323632, 3) Result: 443.324 Date Added: 1/9/2001
|