Forum Discussion
Anonymous
4 years agoNot applicable
Creating new column
Hello I would like to create a new colum in power BI. The excel formula used to generate this column was, New column =IF(AND(BE74="STORE";BF74="Customer";A74="SM2";AI74=0 );1;0). What would its eq...
- 4 years ago
Hi Anonymous ,
Try the following column formula:
Column = IF ( 'Table'[AI] = BLANK (), 0, IF ( 'Table'[BE74] = "Store" && 'Table'[BF74] = "Customer" && 'Table'[A74] = "SM2", 1, 0 ) )If the problem is still not resolved, please provide detailed error information and let me know immediately. Looking forward to your reply.
Best Regards,
Henry
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
v-henryk-mstf
4 years agoCommunity Support
Hi Anonymous ,
Try the following column formula:
Column =
IF (
'Table'[AI] = BLANK (),
0,
IF (
'Table'[BE74] = "Store"
&& 'Table'[BF74] = "Customer"
&& 'Table'[A74] = "SM2",
1,
0
)
)
If the problem is still not resolved, please provide detailed error information and let me know immediately. Looking forward to your reply.
Best Regards,
Henry
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
Hii. Sorry for the late response. It worked. Thank you very much.