Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
Hi,
Here I have an Colum Payment , Stages with (Stage1,Stage2,Stage3,Stage4,Stage5) and Another Column Verified Ekyc and Sign.
I have an Sample Formula which I have used in Tableau and Here I need the Same in Power BI.
IF (ISNULL([Sign]) or [Sign] == '') AND NOT 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
Solved! Go to Solution.
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.
Hi @SIBI1998 you can try
IF(ISBLANK([Sign]) || [Sign] = "") && NOT(ISBLANK([Payment])) && NOT(ISBLANK([Stage5])) && NOT(ISBLANK([Stage4])) && NOT(ISBLANK([Stage3])) && NOT(ISBLANK([Stage2])) && NOT(ISBLANK([Stage1])) && ISBLANK([Verified Ekyc],
1)
@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.
Check out the July 2025 Power BI update to learn about new features.
User | Count |
---|---|
23 | |
8 | |
7 | |
6 | |
6 |
User | Count |
---|---|
28 | |
11 | |
11 | |
10 | |
6 |