| First, Welcome
I'm not clear what you need to do here. Are you trying to update a value in a table, display a calculation or what?
If you are trying to display a calc then add a column with the expression:
AdjStorageDays: IIF([Storagedays]>7,[Storagedays]-7,[Storagedays])
If you are looking to update the Storage days value, then create an Update Query in Design mode. In the Update To row enter:
[Storagedays]-7
In the Criteria Row enter:
>7 |