S
Sharon
My code determines the [next_review_date] based on
various criteria including the [last_review_date]. Some
of the records do not have a [last_review_date]. How do
I use null so that the records with [last_review_date]
will calculate with the [next_review_date] and leave the
records without a [last_review_date] blank?
The code below still stops at records without a
[last_review_date]. What am I doing wrong?
If Me.[excpt_rate] = 0 Then
If Not IsNull(Me.[last_review_date]) Then
Me.NextReviewDate = DateAdd("m", 24, Me.
[last_review_date])
various criteria including the [last_review_date]. Some
of the records do not have a [last_review_date]. How do
I use null so that the records with [last_review_date]
will calculate with the [next_review_date] and leave the
records without a [last_review_date] blank?
The code below still stops at records without a
[last_review_date]. What am I doing wrong?
If Me.[excpt_rate] = 0 Then
If Not IsNull(Me.[last_review_date]) Then
Me.NextReviewDate = DateAdd("m", 24, Me.
[last_review_date])