Forum Discussion

Valentin09's avatar
Valentin09
Regular Visitor
1 year ago
Solved

Weekly Team Average - Running Data

Hi everyone,

 

I have the following table:

(just the Athlete-Name is missing in the picture!)

 

And I want the Visual at the end to look like this:

 

I need a calculation which gives me a Team-Average for every day. In the Team-Average I just want to have players which have a "Full"-Tag in the Participation Column. The goal is to have a Dashboard which gives me a Weekly Teamoverview like the one above, where the Team-Averages for every day are SUMed for the whole week.

 

Example:

Name: Player 1 / Date: 08.01.2025 / Participation: Full / Distance: 3.000 / Week: 1

Name: Player 2 / Date: 08.01.2025 / Participation: Full / Distance: 2.500 / Week: 1

Name: Player 3 / Date: 08.01.2025 / Participation: Part / Distance: 3.000 / Week: 1

Name: Player 1 / Date: 09.01.2025 / Participation: Full / Distance: 4.000 / Week: 1

Name: Player 2 / Date: 09.01.2025 / Participation: Full / Distance: 3.000 / Week: 1

Name: Player 3 / Date: 09.01.2025 / Participation: Part / Distance: 3.000 / Week: 1

 

Daily Average for players who particpated full on 08.01.2025 = 2.750

Daily Average for players who particpated full on 09.01.2025 = 3.500

 

Weekly Team-SUM for Week 1 = 6.250

 

I am looking forward to hear from you and thanks a lot in advance!

  • HI Valentin09,

    you can try this formula to find Daily Average for players who particpated full 

    Full avg = AVERAGEX(FILTER(Team,Team[Participation] = "Full"),Team[Distance])

    Weekly Team-SUM for Week you and try this 

    Weekly team = SUMX(VALUES(Team[Date]),[Full avg])

    If this post helps, then please give us Kudos and consider Accept it as a solution to help the other members find it more quickly.

    Thank you

1 Reply

  • HI Valentin09,

    you can try this formula to find Daily Average for players who particpated full 

    Full avg = AVERAGEX(FILTER(Team,Team[Participation] = "Full"),Team[Distance])

    Weekly Team-SUM for Week you and try this 

    Weekly team = SUMX(VALUES(Team[Date]),[Full avg])

    If this post helps, then please give us Kudos and consider Accept it as a solution to help the other members find it more quickly.

    Thank you