Execute a function inside a loop

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • 67Turq
    New Member
    • Apr 2021
    • 2

    Execute a function inside a loop

    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?
Working...