caluclate end date based on start date and term in months
i need to calculate an end date based on start date and number of months.
I have the field start date and term which is months. i need to calculate an end date based on those fields.
i need to calculate an end date based on start date and number of months.
I have the field start date and term which is months. i need to calculate an end date based on those fields.

You can't do this becasue a month is a variable duration (28-31 days):
[start date] + Months([term])
but if you redefined your term to be days or weeks you could do this:
[start date] + Days([term])
[start date] + ToWeeks([term])
If you want to stick with a term of months use this:
AdjustMonth( [start date] , [term])