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!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
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.
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.