Sep 14 2021 02:46 PM - edited Sep 14 2021 02:47 PM
so I'm attempting to sum the value of Column F in Column G at the top and bottom of the document but Column F uses the formula =IF(A#>0,"$6.000","") and so when I used Sum on G it gives me an error saying Inconsistent Calculated Column Formula. Does anyone know how to resolve this error? I have tried using =SUM(F2:F225) and =SUM([Fee]) both return the same error and can be seen in the document attached.
Sep 14 2021 03:20 PM
Solution"$6.00" is a text value, not a number or currency value. SUM ignores all text values.
Change the formula to
=IF(A2>0,6,"")
or to
=IF([@[Game '#]]>0,6,"")
and it will work as intended
Sep 14 2021 03:28 PM