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

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now

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
Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

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

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors