Link to home
Start Free TrialLog in
Avatar of RyanReese
RyanReeseFlag for United States of America

asked on

COUNTIF Return 3.1 not 3.10

Here is my problem.

I am trying to make a spreadsheet that is going to be imported by another program.  And I need to have the formula keep count of the number of times something has been selected above.

Here is what I am doing.  I am using a VLOOKUP to find the Value Column.  Then I am using a COUNTIF to Total # of time occurances in the column.  
Then using  CONCATENATE to Produce Value Displayed
Group                                 Value           Total #         Correct Value              Value Displayed
Plate-Carbon        3.1      1                 1                                    3.1.1
Plate-Carbon       3.1      2                  2                                   3.1.2
MISC.                           3.10               3                 1                                    3.10.1


The Issue I am having is that COUNTIF is counting 3.10 as 3.1
I can't change the the number to be decimial based because I need 3.1 and 3.10.

Avatar of Patrick Matthews
Patrick Matthews
Flag of United States of America image

RyanReese,

It would be useful to see some sample data and/or a sample file.  EE now allows you to directly upload files to your question.

The sample file should clearly illustrate both the input and the expected output given that input.  The sample file need not be very large, but it should have enough examples to cover the expected range of values/scenarios.

Please be advised that once you upload a file, it can be publicly accessed, and that it may not be possible to fully and permanently delete it.  The file may also be indexed by the major search engines.

Therefore, be very careful about posting proprietary, confidential, or other sensitive information.  If necessary, use "fake" and/or obfuscated data in your sample.

Please note that at present EE restricts uploads to certain file types.  If your file type does not match those in the list, you can use http://www.ee-stuff.com instead, which is not officially an EE site, but is run by people connected to EE.

Patrick
Typically COUNTIF treats text and numbers the same so 3.10 = 3.1 even if the former is text. Assuming your data is text (which it will be if produced by concatenation) then try SUMPRODUCT instead e.g. to count 3.10 in B2:B10

=SUMPRODUCT((B2:B10="3.10")+0)
Avatar of RyanReese

ASKER

I can't use 3.10 within the formula since I need to return the total count based on different values in the formula.  

I attached the file that shows the issue

=COUNTIF($J$1:J2,J2)

Plate-Carbon      3.1      1      CYLINDER
Plate-Carbon      3.1      2      HEADS 1&2
MISC.      3.10      3      NOZ A
 Example-Experts.xlsx
ASKER CERTIFIED SOLUTION
Avatar of barry houdini
barry houdini
Flag of United Kingdom of Great Britain and Northern Ireland image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
...see attached..

regards, barry
27322180.xlsx
Thank you.  That was it