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.
Dear,
I designed a report that shows a rate ( realized on total ). It also allows me to filter by years and months.
The problem occurs when I select several months (Example: January and February ).
I would like to have the average of the January rate with that of fécrier.
The current program will give me the number achieved in January and February divided by the total number of January and February.
Do you have a lead for me?
Regards
You could try a measure something like
Avg Rate =
var summaryTable = ADDCOLUMNS( SUMMARIZE( 'Date'[Year], 'Date'[Month]), "@val", [Rate])
return AVERAGEX( summaryTable, [@val])
@Anonymous
It depends on the report itself. What are you slicing by and what's on the slicers. Can you please share a screenshot of the report