Forum Discussion
AND and AND NOT Condition
- Anonymous4 years ago
Hi SIBI1998 ,
Your formula is incomplete, like missing back brackets and missing ISBLANK function, so there will be errors.
Try this calculated column,
E-Sign Pending = IF ( ( ISBLANK ( 'TABLEAU_REPORT overview_ekyc'[sign] ) || 'TABLEAU_REPORT overview_ekyc'[sign] = "" ) && NOT ( ISBLANK ( 'TABLEAU_REPORT overview_ekyc'[payment] ) ) && NOT ( ISBLANK ( 'TABLEAU_REPORT overview_ekyc'[stage5] ) ) && NOT ( ISBLANK ( 'TABLEAU_REPORT overview_ekyc'[stage4] ) ) && NOT ( ISBLANK ( 'TABLEAU_REPORT overview_ekyc'[stage3] ) ) && NOT ( ISBLANK ( 'TABLEAU_REPORT overview_ekyc'[stage2] ) ) && NOT ( ISBLANK ( 'TABLEAU_REPORT overview_ekyc'[stage1] ) ) && ISBLANK ( 'TABLEAU_REPORT overview_ekyc'[verified_ekyc] ), 1 )What is the difference between Power BI calculated columns and measures? - TrueCue.
Best Regards,
Stephen Tao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Anonymous
I have used the below value and showing the error as,
Hi SIBI1998 ,
Your formula is incomplete, like missing back brackets and missing ISBLANK function, so there will be errors.
Try this calculated column,
E-Sign Pending =
IF (
(
ISBLANK ( 'TABLEAU_REPORT overview_ekyc'[sign] )
|| 'TABLEAU_REPORT overview_ekyc'[sign] = ""
)
&& NOT ( ISBLANK ( 'TABLEAU_REPORT overview_ekyc'[payment] ) )
&& NOT ( ISBLANK ( 'TABLEAU_REPORT overview_ekyc'[stage5] ) )
&& NOT ( ISBLANK ( 'TABLEAU_REPORT overview_ekyc'[stage4] ) )
&& NOT ( ISBLANK ( 'TABLEAU_REPORT overview_ekyc'[stage3] ) )
&& NOT ( ISBLANK ( 'TABLEAU_REPORT overview_ekyc'[stage2] ) )
&& NOT ( ISBLANK ( 'TABLEAU_REPORT overview_ekyc'[stage1] ) )
&& ISBLANK ( 'TABLEAU_REPORT overview_ekyc'[verified_ekyc] ),
1
)
What is the difference between Power BI calculated columns and measures? - TrueCue.
Best Regards,
Stephen Tao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.