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

Compete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.

Reply
AlexH330
Frequent Visitor

How to calculate by an aggregated DAX measure?

Hello,

 

I have a DAX measure (very basic subtraction measure) that I'd like to roll up and calculate using that rolled up value.

 

Right now, it's being calculated in the same context as my rows (as expected), but I'd like each row to be calculated by the rolled up value instead. I feel like this is basic, but I can't get it to work. Right now it looks like this:

 

DateValueMeasure
Day 121
Day 241
Day 372
Day 462

 

And I want it to look like this:

 

DateValueMeasure
Day 121.5
Day 241.5
Day 371.5
Day 461.5
1 ACCEPTED SOLUTION
amitchandak
Super User
Super User

@AlexH330 , please replace the measure with your calculation of your current meausre

 

Try like

 

calculate([Measure], allselected(Table))

 

calculate([Measure], allselected(Table[date]))

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

View solution in original post

2 REPLIES 2
amitchandak
Super User
Super User

@AlexH330 , please replace the measure with your calculation of your current meausre

 

Try like

 

calculate([Measure], allselected(Table))

 

calculate([Measure], allselected(Table[date]))

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

@amitchandak my solution ended up not working in the end - yours worked well. thanks!

Helpful resources

Announcements
July 2025 community update carousel

Fabric Community Update - July 2025

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

July PBI25 Carousel

Power BI Monthly Update - July 2025

Check out the July 2025 Power BI update to learn about new features.