Greetings,
I've a field called Status with dropdown items (below). I was tasked to hide dropdown items that are no longer in use.
Row source:
In order to hide the unused dropdown items, I used STATUSID <> 4 AND <>5.
The dropdown now shows open, pending, and closed as planned. However, for historical cases where the status dropdown was Referred or Triage, the dropdown shows blank.
How can I maintain the historical dropdown items when viewing the old cases?
TIA,
Regards
I've a field called Status with dropdown items (below). I was tasked to hide dropdown items that are no longer in use.
Row source:
Code:
SELECT [tblSTATUS].[STATUSID], [tblSTATUS].[STATDESC] FROM tblSTATUS ORDER BY [STATDESC];
In order to hide the unused dropdown items, I used STATUSID <> 4 AND <>5.
The dropdown now shows open, pending, and closed as planned. However, for historical cases where the status dropdown was Referred or Triage, the dropdown shows blank.
How can I maintain the historical dropdown items when viewing the old cases?
TIA,
Regards