D
Darla
Help! My brain has died and I'm sure I've just stared at
this too long. I have three fields (Date on Hold),
(Release Date), and (Days in Hold). I'm trying to
calculate the days in hold field.
This is what I tried in my query.
Days in Hold:IIf((IsNull[Release Date]), (Now()-[Date On
Hold]), ([Release Date]-[Date On Hold]))
Obviously, it didn't work because I have a syntax error.
I'm trying to write it using code and an if then else
statement.
Private Sub ifthenelse()
If IsNull(Me.Release_Date.Date) Then
I'm not sure what the best approach is going to be.
Thanks for any help you can give.
this too long. I have three fields (Date on Hold),
(Release Date), and (Days in Hold). I'm trying to
calculate the days in hold field.
This is what I tried in my query.
Days in Hold:IIf((IsNull[Release Date]), (Now()-[Date On
Hold]), ([Release Date]-[Date On Hold]))
Obviously, it didn't work because I have a syntax error.
I'm trying to write it using code and an if then else
statement.
Private Sub ifthenelse()
If IsNull(Me.Release_Date.Date) Then
I'm not sure what the best approach is going to be.
Thanks for any help you can give.