Ok, so I built a spreadsheet to track my running throughout the year and I'm trying to see what my averages are on each day of the week. Through an exhaustive search, I can only come up with the following formula
Column A is the Date where Column B is Miles Ran
But the problem with this formula is that it grabs all the zeroes from the rest of the Mondays in the year and so my average miles ran on a Monday is 0. I have tried using a helper column to only grab currently dated cells with AVERAGEIFS, but I end up with #value ! returned...
I am also having the same problem with my monthly averages as I'd like to see my average miles per day in a given month but on a MTD basis...
Thanks in advance for the help!
Code:
=AVERAGE(IF(WEEKDAY(A2:A366)=2,B2:B366))
Column A is the Date where Column B is Miles Ran
But the problem with this formula is that it grabs all the zeroes from the rest of the Mondays in the year and so my average miles ran on a Monday is 0. I have tried using a helper column to only grab currently dated cells with AVERAGEIFS, but I end up with #value ! returned...
I am also having the same problem with my monthly averages as I'd like to see my average miles per day in a given month but on a MTD basis...
Thanks in advance for the help!