Re: Show all records in query if conditions is false

Tech-Archive recommends: Repair Windows Errors & Optimize Windows Performance




John Spencer (MVP) wrote:
> Field: ProjectCreator
> Criteria: LIKE IIF(CurrentUser() in ("btibbs","csarmiento"),"*",CurrentUser)

Alternatively (in SQL code):

ProjectCreator = IIF(CurrentUser() IN ('btibbs', 'csarmiento'),
ProjectCreator ,CurrentUser)

.



Relevant Pages