Consonanza
New member
- Local time
- Today, 19:37
- Joined
- Jan 7, 2022
- Messages
- 9
I have a field in my query whiich has 3 tests:
1 fldDiscNo = 0
2 fldRecordingID is null
3 fldIgnore (a Yes/No field) = True
If tests 1 and 2 are met, the query text field (Wanted) should be "Yes" but if test 3 is met, the result should be "No".
Here's one of the many variations I have tried but it doesn't produce the right results.
1 fldDiscNo = 0
2 fldRecordingID is null
3 fldIgnore (a Yes/No field) = True
If tests 1 and 2 are met, the query text field (Wanted) should be "Yes" but if test 3 is met, the result should be "No".
Here's one of the many variations I have tried but it doesn't produce the right results.
Wanted: IIf(([tblDiscsOtherlabels!fldDiscNo]=0 And isnull([tblDiscsOtherLabels!fldRecordingID])) Or [tblDiscsOtherLabels!fldIgnore]=True,"No","Yes")