If you withdraw just the interest every month, the principal is never decreased, in theory. So FV is the same as the PV, namely $1M.
FYI, the monthly interest amount is probably =1000000*5%/12, which is $4166.67. Due to rounding up, the actual FV is $999,999.77, to wit:
=FV(5%/12, 5*12, 4166.67, -1000000)
Withdrawals are at the end of the period; so type=0 (implied 5th parameter).
But if you are talking about an investment with an annual yield of 5%, the monthly return is =1000000*((1+5%)^(1/12)-1), which is $4074.12. Due to rounding down, the actual FV is $1,000,000.26, to wit:
=FV((1+5%)^(1/12)-1, 5*12, 4074.12, -1000000)
In both case, note that the sign of the withdrawal ("payment") is the opposite of the investment and the same as the FV.
I might note that all of these calculations are estimates, because in real life, we do not know how the financial institution rounds interest payments and the cumulative balance.
The Excel FV function does not round internally, since it cannot know the intended rounding rules to apply.