S
Sharon
The code is not updating the Next Audit Date for nulls.
I'm trying to pull accounts with an Exception Rate of
either 0 or non-existent. I need to be able to
distinguish between both of these so I cannot turn the
nulls into 0. Exception Rates are percentages.
If [MatrixClass] = 2 Then
If [ExcptRate] = 0 Or [ExcptRate] = Null Then
[next_audit_date] = DateSerial(Year(last_audit_date), _
Month([last_audit_date]) + 24, Day
([last_audit_date]))
I'm trying to pull accounts with an Exception Rate of
either 0 or non-existent. I need to be able to
distinguish between both of these so I cannot turn the
nulls into 0. Exception Rates are percentages.
If [MatrixClass] = 2 Then
If [ExcptRate] = 0 Or [ExcptRate] = Null Then
[next_audit_date] = DateSerial(Year(last_audit_date), _
Month([last_audit_date]) + 24, Day
([last_audit_date]))