Hello all,
I am trying to figure out a formula that will help me count how many times a particular number sequence is appearing in a range of string text that could be anywhere from 4 characters on up. The text could appear as:
A B C
1.02 1.02 1.03
1.03 1.03 1.05
1.05 1.05 1.02
1.02 1.03 1.02 1.02 1.03
1.02, 1.03 1.02 1.02, 1.03, 1.05
Some text will have a comma, semicolon or spaces after it and could have a combination of both. I have been able to create a formula that will count the occurence based on individual cells. So if I wanted to count when 1.02(Cell D8) has occured in cell A5 the formula would be =COUNT(FIND(D8,A5,LEN(1))). If the formula is entered as =COUNT(FIND(D8,A1:A5,LEN(1))), Excel tells me that the formula result is 3 in the Function Arguments window but when entered the result is 0. Most likely due to the fact that there are #VALUE! errors in the range string.
Any help would be greatly appreciated.
I am trying to figure out a formula that will help me count how many times a particular number sequence is appearing in a range of string text that could be anywhere from 4 characters on up. The text could appear as:
A B C
1.02 1.02 1.03
1.03 1.03 1.05
1.05 1.05 1.02
1.02 1.03 1.02 1.02 1.03
1.02, 1.03 1.02 1.02, 1.03, 1.05
Some text will have a comma, semicolon or spaces after it and could have a combination of both. I have been able to create a formula that will count the occurence based on individual cells. So if I wanted to count when 1.02(Cell D8) has occured in cell A5 the formula would be =COUNT(FIND(D8,A5,LEN(1))). If the formula is entered as =COUNT(FIND(D8,A1:A5,LEN(1))), Excel tells me that the formula result is 3 in the Function Arguments window but when entered the result is 0. Most likely due to the fact that there are #VALUE! errors in the range string.
Any help would be greatly appreciated.