i put another column on a query to calculate the number of dates between dates. here is what i have:
[Date]-[CompletedTime]+1
but if the record does not have a completed time then it will be blank, is there a way to say:
if [CompletedTime] = 0 then
[Date] - Date()
else
[Date]-[CompletedTime]+1
end if
anyone know how to do this?
[Date]-[CompletedTime]+1
but if the record does not have a completed time then it will be blank, is there a way to say:
if [CompletedTime] = 0 then
[Date] - Date()
else
[Date]-[CompletedTime]+1
end if
anyone know how to do this?