Oct 06 2022 12:35 AM
Using Excel 365 for Mac.
Each month I get a list of names teams and scores. (see example 1)
I then have a second spreadsheet with 6 months of trends, (Example 2)
Each month I have to remove the month column from 7 months (In this example January) and replace with current Month (July).
With 200 players in 8 different teams it takes me a long time changing the Trends table manually.
Any suggestions
Example 1
July Scores
Example 2
Jan Feb Mar Apr May Jun TOTAL
David Ancliffe C Team 65 70 80 65 72 74 426
Harry Sahota C Team 65 65 72 54 82 84 422
Vera Dubrovnik B Team 64 65 69 72 74 76 420
Ralph Mitchell A Team 71 69 68 66 66 68 408
Oct 06 2022 08:48 AM - edited Oct 06 2022 08:50 AM
SolutionHello Charlie,
My suggestion would be to collect the data in one worksheet and do the analysis in a second one. I did this in my example with SUMPRODUCT().
Have a look at my example file. Here you can set the first month to be evaluated by changing the cell C1 in Analysis.
=SUMPRODUCT(Data!$D$2:$D$29,(Data!$A$2:$A$29=C$1)*(Data!$B$2:$B$29=$A2))
The old data you can delete as you want.
Oct 07 2022 11:11 PM