Im calculating monthly payments using the Finance PMT calculation and Im not sure what the convention for the "PayAtPeriodBegin" argument is. Is it a 1 for at beginning of period and 0 for at end?
FinancePMT(Rate, NumPayments, PresentValue, FutureValue, PayAtPeriodBegin)
Thanks
Solved! Go to Solution.
That is what the formula reads from microsoft. The difference there is that the default value is due at end of period. If you test in comparison with their function, you should get the same results. I tested using:
I got same/similar results.
1 = Beginning & 0 = End
Cheers,
Mark
Magic thanks, I wasnt sure if it was the microsoft syntax