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! Request now
A newbie is having problems with creating a new column - I just right click on my table (not in Power Query) and create new column and want a simple condition column:
Solved! Go to Solution.
try this
Is Customer = IF(Orders[customerNumberShop] = "" , 1, 0)
or
Is Customer = IF(Orders[customerNumberShop] = BLANK() , 1, 0)
or
Is Customer = IF(ISBLANK(Orders[customerNumberShop]), 1, 0)
try this
Is Customer = IF(Orders[customerNumberShop] = "" , 1, 0)
or
Is Customer = IF(Orders[customerNumberShop] = BLANK() , 1, 0)
or
Is Customer = IF(ISBLANK(Orders[customerNumberShop]), 1, 0)
@Anonymous
Is Customer = IF( isblank(Orders[customerNumberShop] ), 1, 0)
⭕ Subscribe and learn Power BI from these videos
⚪ Website ⚪ LinkedIn ⚪ PBI User Group
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.