I am using the following
=COUNTIF(EquipmentID,F1)
=COUNTIF(EquipmentID,F2)
in the A column. EquipmentID is the F column. There are two entries in the F column that are exactly the same except one of them ends with two spaces. Both rows in the A column show a result of 1.
I have tried
=COUNTIF(EquipmentID,TRIM(F1))
=COUNTIF(EquipmentID,TRIM(F2))
but still get a count of 1. How can I make the COUNTIF() function realize that these two entries are the same?
=COUNTIF(EquipmentID,F1)
=COUNTIF(EquipmentID,F2)
in the A column. EquipmentID is the F column. There are two entries in the F column that are exactly the same except one of them ends with two spaces. Both rows in the A column show a result of 1.
I have tried
=COUNTIF(EquipmentID,TRIM(F1))
=COUNTIF(EquipmentID,TRIM(F2))
but still get a count of 1. How can I make the COUNTIF() function realize that these two entries are the same?