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

Next up in the FabCon + SQLCon recap series: The roadmap for Microsoft SQL and Maximizing Developer experiences in Fabric. All sessions are available on-demand after the live show. Register now

Reply
arp2
Helper II
Helper II

Help with slicer measure

Team, I have three tables showing weekly forecast, capacity, and plan by discipline, Project, and Grouping. I've created measures for the Average of the Top 5 weeks (for Forecast) and Max of Capacity (for capacity). These are working fine with slicers on the page except the slicers for Office Location and Approval. Office Location and Approval are fields from the forecast table. I need help with the following:

  1. I want the measure for “AvgTop5Weeks” to show results for selected office locations and selected approval and
  2. I want the measure for “AvgTop5Weeks” to show results for weeks after a specified cutoff (say current week or next week)

Can you plz guide me?

DummyMar1 R0.pbix

 

5 ACCEPTED SOLUTIONS
Kaviraj11
Super User
Super User

For the 1st Problem - you can change the following Measure to 

 

SumFcstWeek = CALCULATE(SUM(ForecastTable[Forecast Hours]))
AvgTop5Weeks = AVERAGEX(TOPN(5,SUMMARIZE(ALLSELECTED(ForecastTable),ForecastTable[Week],"TotWeek",[SumFcstWeek]),[TotWeek],DESC),[TotWeek])



Did I answer your question? Mark my post as a solution!

Proud to be a Super User!





View solution in original post

Thanks @Kaviraj11 would you be able to guide on the 2nd point?

View solution in original post

here is the DAX below:
you can use DateAdd function as well, to verify the result, you can create a calcualted column anf using the summarize part of the function to validate your result
AvgTop5Weeks =
AVERAGEX(TOPN(5,FILTER(SUMMARIZE(ALLSELECTED(ForecastTable),ForecastTable[Week],"TotWeek",[SumFcstWeek]
),ForecastTable[Week]<=TODAY()),[TotWeek],DESC),[TotWeek])



Did I answer your question? Mark my post as a solution!

Proud to be a Super User!





View solution in original post

ForecastTable[Week]<=TODAY())

above expression will consider all records that are less than equal to today

If you want to do it by DAY,Month,YEAR, you can use

ForecastTable[Week]>=DATESINPERIOD(ForecastTable[Week], TODAY(), 11, DAY)



Did I answer your question? Mark my post as a solution!

Proud to be a Super User!





View solution in original post

Thanks @Kaviraj11 this is working as required.....I wanted dates after today so I just changed the "less than" to greater than.

View solution in original post

9 REPLIES 9
Kaviraj11
Super User
Super User

Can you explain with an example? 

I would also recommend to create a DateDim or Calendar table. 

Could you mark first solution as accepted?




Did I answer your question? Mark my post as a solution!

Proud to be a Super User!





I want the AvgTop5Weeks measure to calculate the average of top 5 weeks which are after a specified date. Currently it is calculating the average of top 5 weeks among all weeks listed in the table. Example, let's say I want the average of Top 5 weeks which are after week 28th March.

here is the DAX below:
you can use DateAdd function as well, to verify the result, you can create a calcualted column anf using the summarize part of the function to validate your result
AvgTop5Weeks =
AVERAGEX(TOPN(5,FILTER(SUMMARIZE(ALLSELECTED(ForecastTable),ForecastTable[Week],"TotWeek",[SumFcstWeek]
),ForecastTable[Week]<=TODAY()),[TotWeek],DESC),[TotWeek])



Did I answer your question? Mark my post as a solution!

Proud to be a Super User!





In above, where and how do I specify the date after which I want the measure to calculate the average?

ForecastTable[Week]<=TODAY())

above expression will consider all records that are less than equal to today

If you want to do it by DAY,Month,YEAR, you can use

ForecastTable[Week]>=DATESINPERIOD(ForecastTable[Week], TODAY(), 11, DAY)



Did I answer your question? Mark my post as a solution!

Proud to be a Super User!





Thanks @Kaviraj11 this is working as required.....I wanted dates after today so I just changed the "less than" to greater than.

@Kaviraj11 plz see above.....kindly let me know if this is not clear yet

Kaviraj11
Super User
Super User

For the 1st Problem - you can change the following Measure to 

 

SumFcstWeek = CALCULATE(SUM(ForecastTable[Forecast Hours]))
AvgTop5Weeks = AVERAGEX(TOPN(5,SUMMARIZE(ALLSELECTED(ForecastTable),ForecastTable[Week],"TotWeek",[SumFcstWeek]),[TotWeek],DESC),[TotWeek])



Did I answer your question? Mark my post as a solution!

Proud to be a Super User!





Thanks @Kaviraj11 would you be able to guide on the 2nd point?

Helpful resources

Announcements
New to Fabric survey Carousel

New to Fabric Survey

If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.

Join our Fabric User Panel

Join our Fabric User Panel

Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.

March Power BI Update Carousel

Power BI Community Update - March 2026

Check out the March 2026 Power BI update to learn about new features.