I am struggling to put together a multiple part formula that only does the average of a column if certain factors are met.
I want to take the average number in column [NetDays] only if done is check and the row in column [Event Location] includes the word ABC. If possible only for events within the last 365 days
This is what I originally tried which is #INVALID DATA TYPE
=AVERAGEIF(NetDays:NetDays, AND(Done:Done = 1, [Event Location]:[Event Location] = CONTAINS("ABC")))
I also tried to mess around with =AVG(IF(AND(OR) combos
Can someone help me?