i have this formula:
=IF(COUNTIF(C1:C2577,"CertainText")>0, "Present","Absent")
but i dont want it to search in C3, how do i do this?
i have this formula:
=IF(COUNTIF(C1:C2577,"CertainText")>0, "Present","Absent")
but i dont want it to search in C3, how do i do this?
=IF((COUNTIF(C1:C2577,"CertainText")-COUNTIF(C3,"CertainText"))>0, "Present","Absent"
Use a named range that is defined by the cells C1:C2 and C4:C2577. Then refer to the named range in your COUNTIF formula.