Hi! I am struggling to get this formula to work correctly. The Smartsheet-AI generated formula is returning #UNPARSABLE and I am not too familiar with Average Collect.
The goal: Average the column "Total Days Open" if the following criteria are met: column "Business Type" is NOT "retail" and column "Division" is "Northern"
The AI-generated formula is
=AVERAGEIF([TOTAL DAYS OPEN]:[TOTAL DAYS OPEN], AND([Division]@row = "northern", [Business Type]@row <> "retail"))
I also tried:
=AVERAGE(COLLECT([TOTAL DAYS OPEN]:[TOTAL DAYS OPEN], [Division]:[Division], "northern", [Business Type]:[Business Type],<>"retail"))
Both are returning as Unparsable. Any help is appreciated!! Thanks!