I am trying to find the total amount of times a number appears if the first digit is the same. I keep getting 0 or #VALUE.
From a list, I only care about counting the first digit
Example:
A1: 1.2.3
A2: 1.3.4
A3: 2.3.4
A4: 2.5.8
A5: 2.2.2
A6: 3.4.7
So, how many times is 1 the first digit? Two times. How many times is 2 the first digit? Three times. How many times is 3 the first digit? One time.
I tried using a sum with LEFT(A1:A6,1)=1, but I just get zero. I tried FIND with 1* and 1&"*", but it gives me #VALUE. I am stuck
From a list, I only care about counting the first digit
Example:
A1: 1.2.3
A2: 1.3.4
A3: 2.3.4
A4: 2.5.8
A5: 2.2.2
A6: 3.4.7
So, how many times is 1 the first digit? Two times. How many times is 2 the first digit? Three times. How many times is 3 the first digit? One time.
I tried using a sum with LEFT(A1:A6,1)=1, but I just get zero. I tried FIND with 1* and 1&"*", but it gives me #VALUE. I am stuck