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.
HI,
Newly learning my way around so hope someone can help! I am trying to calculate the YTD average of meetings held per week and also show thew rolling average in a bar/line chart visual.
Ive used the following code but am running into issues as the average is being calculated across the numbers of staff each week as opposed to the total for the week. for example week 9 in the table is being calculated as an average of 2. it's also giving unexpected results in the chart for the same reason, if I filter it to just one team member then it is giving an expected result.
The measure I am using is;
@Phil_SPR , Please create week/Date dimension table and join it with your table on week/date and then try a measure like
Average DAs PW = calculate(AVERAGE(Append1[DAs]), FILTER(ALLSELECTED(Week),Week[Week Number]<=MAX(Week[Week Number])))
Thanks for the response, unfortunatly this is giving me the same result.
The issue is that there are anywhere from 2 to 6 advisers taking DAs in any given week and the formula is dividing the weekly DA total between the advisors. Not giving a weekly average of the total.