Can anyone please help me with my current dillema.
I'm creating a billing form and i need to breakdown the monthly payments (date). I have a field where users enter the first payment [firstpayment] and another field where they enter the number of months [MonthsToPay]. Now, I breakdown the months by:
Select DateAdd("m",0,[firstpayment]) AS Payd1,
DateAdd("m",1,[firstpayment]) AS Payd2,
DateAdd("m",2,[firstpayment]) AS Payd3,
DateAdd("m",3,[firstpayment]) AS Payd4, 'etc...
Now what i need to do is to only show the dates for the number of months to pay they entered [MonthsToPay].
Please please please help!
Les
I'm creating a billing form and i need to breakdown the monthly payments (date). I have a field where users enter the first payment [firstpayment] and another field where they enter the number of months [MonthsToPay]. Now, I breakdown the months by:
Select DateAdd("m",0,[firstpayment]) AS Payd1,
DateAdd("m",1,[firstpayment]) AS Payd2,
DateAdd("m",2,[firstpayment]) AS Payd3,
DateAdd("m",3,[firstpayment]) AS Payd4, 'etc...
Now what i need to do is to only show the dates for the number of months to pay they entered [MonthsToPay].
Please please please help!
Les