Forum Discussion
Ding080
Jul 09, 2022Copper Contributor
averageifs when there is no input
SOLVED G'day all, How would i use the following formula, but not return a #div/0! error when there is not yet any input for the specific date range? thank you =AVERAGEIFS(GAIN_LOSS,DATE_OF_ENTRY...
OliverScheurich
Jul 09, 2022Gold Contributor
=IFERROR( AVERAGEIFS(GAIN_LOSS,DATE_OF_ENTRY,">="&DATE(YEAR(F51),MONTH(F51),1),DATE_OF_ENTRY,"<="&G62) ,"")
Does it work with the help of the IFERROR function?
- Ding080Jul 10, 2022Copper Contributorthank you, works perfectly.