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

To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.

Reply
PSG
New Member

I want to get a Cumm sum and need to show that data in custom tooltip.

It's for Stacked combo chart. I want to output like if i Hoover my cursor to may month i need my data of APR+MAy to be added and show the result in custom tooltip. Likewise for every month, data needs to be added dynamically. Kindly let me know where I'm gng wrong.

IMG_20231029_214609.jpg

IMG_20231029_203332.jpg

IMG_20231029_214107.jpg

2 REPLIES 2
Dangar332
Super User
Super User

hi, @PSG 

 

if your month is continuse then try below dax measure

 

var a= max('sheet'1[month])
var b = month(max('sheet'1[month]))-1
var c = calculate(sum('sheet[A]'),'sheet'[month]=a)
var d =calculate(sum('sheet[A]'),'sheet'[month]=b)
return c+d

 

 

 Thanks for your reply, but thats not working. Kindly have a look on it. I need cumm sum for each month dynamically.

IMG_20231030_120543.jpg

Helpful resources

Announcements
September Power BI Update Carousel

Power BI Monthly Update - September 2025

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