I'm a beginner, and I'm trying to execute a FACTORIAL calculation inside a For - Next loop.
E=8
Eg.-
For f = 0 to E
Cells (f+1, 1) = Fact(E)/(Fact(f)*Fact(E))
Next F
How can I define the function for that calculation?