extract decimal place digit

C

craig_100

I have a large table of data which, based on the SUM formulae I have put
in for some columns, apparently have been mis-keyed with 3 decimal
places, instead of only 2. I need to find out which values have 3
decimal places so I can correct them. Suggestions? Will a formula,
using various functions, work? Thanks.
 
G

Guest

Assuming your data is in column A, Put this in B1 and copy down............

=IF(LEN(A1-INT(A1))>4,"yes","")

Then Data > Filter > Autofilter on the "yes's"


Vaya con Dios,
Chuck, CABGx3
 
B

Bernie Deitrick

Craig,

For a number in cell A1:

=IF(LEN(A1)-FIND(".",A1)>2,"Extra digit(s)","")

Change the A1's to be your upper left cell address, then copy to a table the same size as your data
table (same number of columns and rows).

HTH,
Bernie
MS Excel MVP
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top