The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
Trying to make an additional column that filters values - if column 1 has null, copy column B, else 0.
if(ISBLANK([unit_part_desc]),[manufac_volume]),0)
I'm getting a "Token ')' Expected" error, and when I click "Show Error," the letter "u" in "manufac_volume" (first one) is highlighted.
Solved! Go to Solution.
if(ISBLANK([unit_part_desc]),[manufac_volume],0)
if(ISBLANK([unit_part_desc]),[manufac_volume],0)