While we should be able to walk you through you challenges, I would
*HIGHLY* recommend that you read up on Access to ensure that you
understand Access and DB related terminology. You'll find that it will
save you a lot of time and it might actually help you to understand &
solve future problems. Awhile back, SYBEX was publishing a book entitled
'Access Developer's Handbook' (or something similar). I used the A2.0
version and have never bought any other Access-related books.
roy.okinawa said:
Thanks.
Field A shows cumlative days =DateDiff("d",[Date Received At Vendor],Date())
Once Field D has a date I want Field A to stop and become blank.
I will try the below formula.
:
In Access we refer to cells as Fields
So how did you set the value in fieldA?
In the control source of fieldA you can try this formula
=IIf([D] Is Null,iif(FieldB Is Null Or FieldC Is
Null,Null,DateDiff("d",FieldB,FieldC)),Null)
:
No it is for Access. I created a Access screen where I input my data. I
wasn't sure what to call the boxes where data is input to.
Thanks.
:
I think you made a mistake with the Discussion group tou posted this question
in, It sound like an Excel question, and you posted it in Microsoft Access
discussion group
--
I hope that helped
Good Luck
:
Cell A updates daily, the day difference between dates in Cell B and C.
However, once I enter a date in Cell D, I would like Cell A to stop
calculating and become blank. Is this possible?