Forum Discussion
SIBI1998
Helper I
4 years agoAND and AND NOT Condition
Hi, Here I have needed AND and AND NOT Condition for ; I have 5 Stages (Stage1,Stages2,Stages3,Stages4,Stages5) and (Verified Ekyc) as one Column I have Needed Like with the Below S...
- Anonymous4 years ago
Hi SIBI1998 ,
Please try:
Column = IF ( [Stage1] <> BLANK () && [Stage2] <> BLANK () && [Stage3] <> BLANK () && [Stage4] <> BLANK () && [Stage5] <> BLANK () && [Stage1] <> "Rejected" && [Stage2] <> "Rejected" && [Stage3] <> "Rejected" && [Stage4] <> "Rejected" && [Verified Ekyc] <> BLANK (), 1 )Best Regards,
Eyelyn Qin
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Anonymous
4 years agoNot applicable
Hi SIBI1998 ,
Please try:
Column =
IF (
[Stage1] <> BLANK ()
&& [Stage2] <> BLANK ()
&& [Stage3] <> BLANK ()
&& [Stage4] <> BLANK ()
&& [Stage5] <> BLANK ()
&& [Stage1] <> "Rejected"
&& [Stage2] <> "Rejected"
&& [Stage3] <> "Rejected"
&& [Stage4] <> "Rejected"
&& [Verified Ekyc] <> BLANK (),
1
)
Best Regards,
Eyelyn Qin
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.