if function errors

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi!
The following if command, when tested on 100 cases of a dataset, gives
"true" value for some and "false" for rest; when all are true. I checked if
function in each cell but for some reason certain cells seem to give the
wrong(opposite) response.
replacing numbers for responses instead of true /false did not change the
end result. Any one had this problem? and how tosolve this problem. (I use
excel from office 2000SR premium)

function (all values in d are less than 5.00
=if(D2<10,"true","false")
 
Hi Ron

i would check that all of the numbers are in fact numbers, use the following
test
=IF(ISNUMBER(A1),"","check") and fill down the column
look at any that say "check"

Cheers
JulieD
 
Hi!
The following if command, when tested on 100 cases of a dataset, gives
"true" value for some and "false" for rest; when all are true. I checked if
function in each cell but for some reason certain cells seem to give the
wrong(opposite) response.
replacing numbers for responses instead of true /false did not change the
end result. Any one had this problem? and how tosolve this problem. (I use
excel from office 2000SR premium)

function (all values in d are less than 5.00
=if(D2<10,"true","false")

Most likely, some of the values in the dataset, that look like numbers, are
really text.


--ron
 

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

Similar Threads

if function 3
if function 1
MATCH not working in IF statement 6
Need Function Help 8
Find certain text in a cell 3
And function into If function 4
How do i trouble shoot an IF function 2
IF FUNCTION? 6

Back
Top