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.
Hi there,
I would like to create a New Column using a calculation but skipping over in the rows that contain blanks.
ie.
New Column = Column 2 - Column 1
In Column 2 there are blanks.
I'd like the equation to not apply to the rows with blanks in coloum 2.
Thank you
NewColumn = IF(NOT(ISBLANK(column2)), column2 - column1)
Use an IF statement with ISBLANK