Can someone let me know why my Average If statement does not work? File attached.
Thank y
You have
WKDAY AVG working properly, looking for values that are not weekends
=AVERAGEIFS(A6:BK6,A4:BK4,"<>7",A4:BK4,"<>1")
Following the same logic, you have to look for values that are not weekdays
WKEND AVG
=AVERAGEIFS(A6:BK6,A4:BK4,"<>2",A4:BK4,"<>3",A4:BK4,"<>4",A4:BK4,"<>5",A4:BK4,"<>6")
Why it doesn't work
=AVERAGEIFS(A6:BK6,A4:BK4,"=7",A4:BK4,"=1")
This looks for values that are equal to 7 AND equal to 1, but no cell can have 2 values so it returns 0.