The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
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
User | Count |
---|---|
12 | |
9 | |
6 | |
6 | |
6 |
User | Count |
---|---|
24 | |
14 | |
14 | |
9 | |
7 |