Find records with values more then 2 decimal places.

G

Guest

I have a column of data that has a bunch of varing length of data. I want to
know how can I find all the records that have more then 2 decimal places.

Thanks
 
G

Guest

Wasn't sure what you wanted to do with it when you found it...

Use this with Conditional formatting - formula is: to highlight cells with
more than 2 decimal places.
=A19<>ROUND(A19,2)

Add this formula to an additional cell to have it list just the decimal
portion of the number if greater than 2 places, or blank if not.
=IF(A19<>ROUND(A19,2),A19-INT(A19),"")
 
G

Guest

Thanks.. This will give me what I need.

BoniM said:
Wasn't sure what you wanted to do with it when you found it...

Use this with Conditional formatting - formula is: to highlight cells with
more than 2 decimal places.
=A19<>ROUND(A19,2)

Add this formula to an additional cell to have it list just the decimal
portion of the number if greater than 2 places, or blank if not.
=IF(A19<>ROUND(A19,2),A19-INT(A19),"")
 

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