I have a sheet that has reached the cell reference limit and won't allow other sheets to copy rows into it. After doing some research it seems that my column references (column:column) within my formulas are the problem.
My sheet contains a unique identifier in the column "ID", and there is a column "Approval Status" which can be Needs Approval or Approved. We are adding new rows to the sheet weekly, and if the ID for the row we add already has a row on the sheet with an Approval Status of Approved, we want that to be identified as such. If the ID for the row we add either already has a row on the sheet but does not have an Approved status, or that ID doesn't exist on the sheet, we want that to be identified as such.
My current formula is below. Right now I'm using a count, so it's 0 if there isn't a row on the sheet already with the same ID and status of Approved, or if it finds a row with the same ID and the status of Approved it returns the count.
Is there a more efficient way to calculate this that doesn't use a many cell references?
=COUNTIFS([Unique ID]:[Unique ID], [Unique ID]@row, [Approval Status]:[Approval Status], "Approved")