I have a series of formula that I am attempting to use to split a compound part number into its part number and revision number and then throw an alert if duplicates are found. Unfortunately my function is returning unpredictable results and I was hoping someone could explain it to me.
You will see in the first image, a column for Part Numbers which is input via forms. This is split into Part and Revision via the following formula.
=LEFT([Part Number]@row, FIND(".", ([Part Number]@row)) - 1)
=RIGHT([Part Number]@row, LEN([Part Number]@row) - FIND(".", [Part Number]@row))
and counted by internal reference into the [Count of Part] column via this formula
=COUNTIF(Part:Part, Part@row)
This causes predictable and functional results about half way down the page however the first part of the page it does not. The only difference I can see is that the part numbers which are functioning all begin with a letter and the rest do not however I have counted numbers with countif before. Am I missing something or not recalling a limitation of the CountIf function?