S
Sharon
Certain criteria requies that I add on 12, 24 or 36 months
to the [Last Review Date]. The [Last Review Date] is
broken out by three fields: [fye_month] [fye_day]
[fye_year]. Some of the accounts do not have a last
review date and the code will not process all of the
records until each date field has something in it.
I've attempted, without success, to use nz to fill in
empty date fields...
last_fye_year: (nz[fye_year],"")
----------------------------------------------------------
I am then trying to add the 12, 24 or 36 months onto the
Last Review Date (if I can ever get past the null dates).
What is wrong with this code?
If [excpt_rate] = 0 Then
[NextReviewDate] = DateSerial(Year(Last_fye_year), _
Month([Last_fye_month]) + 24, Day
([Last_fye_day])
to the [Last Review Date]. The [Last Review Date] is
broken out by three fields: [fye_month] [fye_day]
[fye_year]. Some of the accounts do not have a last
review date and the code will not process all of the
records until each date field has something in it.
I've attempted, without success, to use nz to fill in
empty date fields...
last_fye_year: (nz[fye_year],"")
----------------------------------------------------------
I am then trying to add the 12, 24 or 36 months onto the
Last Review Date (if I can ever get past the null dates).
What is wrong with this code?
If [excpt_rate] = 0 Then
[NextReviewDate] = DateSerial(Year(Last_fye_year), _
Month([Last_fye_month]) + 24, Day
([Last_fye_day])