4 columns data is null or no data those records fail and remaining pass.
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Mute
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
Hi,
If below columns data is null or no data those records fail and remaining pass.
EMP
NAME
Employer
Occupation
Expected Output
Total record 8
pass records with data
fail records with data
Solved! Go to Solution.
- Labels:
- Topic of Interest
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
If below columns data is null or no data those records fail and remaining pass.
EMP
NAME
Employer
Occupation
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
If I understand you correctly, you want a pass/fail flag if any of those specific fields are null.
Your formula would be:
IF IsNull([EMP]) OR IsNull([NAME]) OR IsNull([Employer]) OR IsNull([Occupation])
THEN 'Fail'
ELSE 'Pass'
ENDIF
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
Thank You..
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
Hi Peachyco,
Thanks for resolved my previous one.
Now requirement is BLANK columns are Prefix, PHONE, Mailname and HomeAddress1 should pass
these columns also need to mention in single query like
IF IsNull([EMP]) OR IsNull([NAME]) OR IsNull([Employer]) OR IsNull([Occupation]) or
IsnotNull([Prefix]) OR IsnotNull([PHONE]) OR IsnotNull([Mailname]) OR IsnotNull([HomeAddress])
THEN 'Fail'
ELSE 'Pass'
ENDIF
please resolve my query
