Trying to create a DAX measure that totals the average of the Goal column.
Goal = Var AvgGoal=AVERAGE('OMHA-- Field Office Disposition'[Monthly Goal]) ReturnIf(HASONEVALUE('OMHA-- Field Office Disposition'[FiscalMonth]),AvgGoal,SumX(VALUES('OMHA-- Field Office Disposition'[FiscalMonth]),AvgGoal))