=if, then answer needs to be a number, not text

tryingcake

New Member
Joined
Jun 19, 2008
Messages
32
Office Version
  1. 365
Platform
  1. Windows
I need to run a formula similar to this:

=IF(C58<0.06, "2")

My issue is, it's reading the "2" as text. I need it to be a number than can be added to other numbers. I can't find the correct formula.

What do I need to do differently?

Thanks!
 

Excel Facts

Control Word Wrap
Press Alt+Enter to move to a new row in a cell. Lets you control where the words wrap.
Don't put quotes around the 2. What happens if C58>=0.06 ?

Rich (BB code):
=IF(C58<0.06, 2, ???)
 
Last edited:
Upvote 0
Don't put quotes around the 2. What happens if C58>=0.06 ?

Rich (BB code):
=IF(C58<0.06, 2, ???)


It's a point system. If the overall score is less than .06, we get 2 points. If it's more than .06, we get 0 points.
 
Upvote 0
Then, try this:

Rich (BB code):
=IF(C58<0.06, 2, 0)

Unless you mean <= which requires a change in the code.
 
Last edited:
Upvote 0

Forum statistics

Threads
1,214,561
Messages
6,120,225
Members
448,951
Latest member
jennlynn

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