wrightyrx7
Registered User.
- Local time
- Today, 04:06
- Joined
- Sep 4, 2014
- Messages
- 104
Hi all,
I have a query which determines if a case is open or closed by the closed date (some close dates could be in the future)
I am guessing having this as a field is slowing the data when loaded
I would prefer this to be some sort of calculated field in the table.
Is there any better way of doing this?
Regards
Chris
I have a query which determines if a case is open or closed by the closed date (some close dates could be in the future)
I am guessing having this as a field is slowing the data when loaded
Code:
IIf([Date Closed]<=Date(),"Closed","Open")) AS [Case Open/Closed]
I would prefer this to be some sort of calculated field in the table.
Is there any better way of doing this?
Regards
Chris