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!Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
Hi experts,
I have two columns Date, SBO-CPP which has numeric values. Now I want to create another column with help of DAX which adds numeric 15 in SBO-CPP column which are not blank. If SBO CPP has null values for particular date then it should not add 15 to the row.
Please note that 15 numeric value is coming from parameter which can be changed dynemically. In below image, first calculation is incorrect in SBO Delvd CPP column because Sum of SBO - CPP has blank value.
Solved! Go to Solution.
Hi @Anonymous
You can use If in your measure :
SBO Delvd CPP = if(sum('yourtable'[SBO - CPP] <> blank(), sum('yourtable'[SBO - CPP]+15, 0)
If this post helps, then please consider Accepting it as the solution to help the other members find it more quickly
Happy to help 🙂
Hi @Anonymous
You can use If in your measure :
SBO Delvd CPP = if(sum('yourtable'[SBO - CPP] <> blank(), sum('yourtable'[SBO - CPP]+15, 0)
If this post helps, then please consider Accepting it as the solution to help the other members find it more quickly
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!