Forum Discussion
AND and AND NOT Condition
- 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.
Hi,
Here I have an Colum Payment , Stages with (Stage1,Stage2,Stage3,Stage4,Stage5) and Another Column Verified Ekyc.
I have an Sample Formula which I have used in Tableau and Here I need the Same in Power BI.
IF ISNULL([Payment]) AND NOT ISNULL([Stage5]) AND NOT ISNULL([Stage4]) AND NOT ISNULL([Stage3]) AND NOT ISNULL([Stage2]) AND NOT ISNULL([Stage1]) AND ISNULL([Verified Ekyc]) THEN 1
END
Hi SIBI1998 , you can try
IF(ISBLANK([Payment]) && NOT(ISBLANK([Stage5])) && NOT(ISBLANK([Stage4])) && NOT(ISBLANK([Stage3])) && NOT(ISBLANK([Stage2])) && NOT(ISNULL([Stage1])) && ISBLANK([Verified Ekyc]),
1)