Probably, but to make it easier to help, please attach a small desensitised sample workbook.
Hello! I have a formula as follows
But I only want to average those numbers when there are 5 or more such instances of positive numbers.Code:=AVERAGEIFS(Sheet2!AE:AE, Sheet2!A:A,A1, Sheet2!AE:AE,">0")
Tried this but it doesn't work:
I'm guessing this has a simple solution, but I've been thinking about it for awhile and can't figure it out.Code:=AVERAGEIFS(Sheet2!AE:AE, Sheet2!A:A,A1, Sheet2!AE:AE,">0", Sheet2!AE:AE,(COUNTIF(Sheet2!AE:AE,">0"))>=5)
Probably, but to make it easier to help, please attach a small desensitised sample workbook.
Ali
Enthusiastic self-taught user of MS Excel!
try:Code:=IF(COUNTIFS(Sheet2!A:A,Sheet1!A1,Sheet2!AE:AE,">0")>=5,AVERAGEIFS(Sheet2!AE:AE, Sheet2!A:A,A1, Sheet2!AE:AE,">0"),"fewer than 5")
Bookmarks