FactorialFactorial(number{;numberOfFactors})numberOfFactors - any numeric expression or field containing a number that represents how many factors to include in the multiplication.Factorial(3) returns 6, which = 3 * 2 * 1.Factorial(10;3) returns 720, which = 10 * 9 * 8.