Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Learn more
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!
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.