=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

Why are there 1,048,576 rows in Excel?
The Excel team increased the size of the grid in 2007. There are 2^20 rows and 2^14 columns for a total of 17 billion cells.
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,215,326
Messages
6,124,260
Members
449,149
Latest member
mwdbActuary

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