PLEASE HELP! Student in need of advice about an Excel formula.

BAILEY1234

New Member
Joined
Feb 10, 2014
Messages
2
Hi Guys.

I am a student and certainly not an expert in Excel. It would be greatly appreciated if someone could help me with this issue.

What I would actually like to do is from a column of data be able to pick out those that have more than 2 decimal places, or 3 decimal places.

I would like to write a formula that acts like an IF statement. So if the given cell contains a value with >2dp / >3dp then it would like flag up and I could see it quickly.

Is this possible? Can someone explain this to me in rather simple terms?

Thanks
Ryan
 

Excel Facts

Spell Check in Excel
Press F7 to start spell check in Excel. Be careful, by default, Excel does not check Capitalized Werds (whoops)
did you try something like this?
=LEN(A1)-(FIND(".",A1,1))
this is to return a decimal count from text val cell (A1) .
 
Upvote 0
did you try something like this?
=LEN(A1)-(FIND(".",A1,1))
this is to return a decimal count from text val cell (A1) .

Hey Pedie,

Thanks a lot for your response.

I tried what you said above but am getting an error message - Says i've entered "too few arguments for this function"

Do I need any value in the (".") bit?

Would be great if it could tell me which values in the column or even how many values from the column have more than 2 decimal places.

Thanks
Ryan
 
Upvote 0
not sure if it makes any difference, but try this:

Code:
    =LEN(A1)-FIND(".",A1,1)
put it in B1, and fill down your column.

you can use a countif formula to see how many there are. (try MSHelp in excel for examples of countif)
 
Last edited:
Upvote 0

Forum statistics

Threads
1,223,243
Messages
6,170,964
Members
452,371
Latest member
Frana

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top