Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
Talvien
Helper I
Helper I

DAX: SUM of Budgets for months where costs are available

Hi!

 

I'd like to create a measure where I just have the sum of the Budget of all months where Costs are available (so only the first 5 rows in the example table below). I need it for the target value of the below visual.

Unbenannt.JPG

1 ACCEPTED SOLUTION
Baskar
Resident Rockstar
Resident Rockstar

1. Calculate(Sum(Budget),filter(cost<>blank())

 

2. if(isblank(cost),0,sum(budget))

View solution in original post

3 REPLIES 3
Baskar
Resident Rockstar
Resident Rockstar

1. Calculate(Sum(Budget),filter(cost<>blank())

 

2. if(isblank(cost),0,sum(budget))

@BaskarThe first one works, thanks a lot!

@Beckham I guess this doesn't work since Budget and Costs aren't the same table?

Beckham
Advocate II
Advocate II

It should be Calculate(Sum(Table[Budget]),Table[Costs]>0)

 

Does that work?

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.