Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
Hey Guys,
I'm trying to add a new column and I'm also adding this formula, but it's not working! What's wrong with it?
=IF([LateStart]= 0, && ([LateEnd] = 0),0))
Thanks.
Ben.
Solved! Go to Solution.
Hello, the sintaxis is incorrect
=IF('TableName'[LateStart]= 0 && 'TableName'[LateEnd] = 0, 0)
Or you can consider using AND function
=IF( AND('TableName'[LateStart]= 0 , 'TableName'[LateEnd] = 0), 0)
Remember I copy your example. You should put an else statement.
Regards,
Happy to help!
Hello, the sintaxis is incorrect
=IF('TableName'[LateStart]= 0 && 'TableName'[LateEnd] = 0, 0)
Or you can consider using AND function
=IF( AND('TableName'[LateStart]= 0 , 'TableName'[LateEnd] = 0), 0)
Remember I copy your example. You should put an else statement.
Regards,
Happy to help!
User | Count |
---|---|
98 | |
76 | |
74 | |
49 | |
26 |