Yes, you are all right. Let's start with the query....
I have a master table, only 3 fields of concern...past date, future date, number of months.
past date and future date are date/time data types.
number of months is a number type. Integer. This field needs 2 digits for number of months and will always be number of months.
The query I set up: Has all three fields (and some other fields of no concern), I used the "DateAdd" function in the criteria line of [future date].
Looks like: DateAdd("m",[number of months],[past date]), this would then change or fill [future date]. I've also tried DateAdd("mm",[number of months],[past date]).
The error is "Data type mismatch in criteria expression".
I'm assuming this is because the [number of months] is an integer and not date/time type data format? I know I'm missing something simple here but can't seem to put my finger on it.....