I have a "Status" column with dropdown options of "Pending" and "Accepted". I have a second column (CAR Amount) with a dollar amount in each cell.
I want to sum the amount of all rows marked "Pending" and then do the same thing with all rows marked "Accepted".
I have tried: =SUMIF([Status]1:[Status]64, "Pending", [CAR Amount]1:[CAR Amount]64)
as well as
=SUMIF([Status:]1:[Status:]64, FIND("Pending", @cell) > 0, [CAR Amount]1:[CAR Amount]64)
with no luck. I keep getting $0 returned. Any help? Thanks.