Simple Formula error

It may be that the formula is set up to return either a 0 or 1 depending if the argument is FALSE or TRUE (respectively), i.e. --ISNUMBER(N57) will return 0 if the argument is FALSE, or else it will return an 1.
 
Upvote 0

Excel Facts

How can you turn a range sideways?
Copy the range. Select a blank cell. Right-click, Paste Special, then choose Transpose.
Well, strictly speaking, that isn't a formula. Do you mean this formula?
=INT(N57) & "' - "


What gives 1?

Peter,
N57 = 25.4
O57 = INT(N57) & "' - "

O57 gives me #Value error

when i put Isnumber(N57), it gives me 1.

I cant figure out the reason.
 
Upvote 0
Just to let you know when i try it in a new workbook. everything works perfectly.
Even a new sheet in the same workbook is OK.

What is the problem with my sheet????:confused::confused::confused::confused:
 
Upvote 0
What does this return?
=LEN(N57)

How did the 25.4 get into N57?
- manual entry
- formula result
- vba code
- data feed
- something else?
 
Upvote 0
LEN(N57) gives #VALUE error also.

actually when i check, this error comes for numbers only. Len for text cells fives the correct answer.

the value 25.4 has been copied from another workbook as values only.
The error is there even if i manually enter 25.4.

I cant understand why this abnormal behaviour for this sheet only.
even the formul N57 & "" gives me the same error.
 
Upvote 0
This problem intrigued me so I asked the OP for a copy of the file.

The issue is that the 'problem sheet' has 'Transition formula evaluation' enabled.
Look in Tools|Options…|Transition tab|Sheet Options section.

If you do not require this setting for the sheet, then disable it at the above location.

If you do require this setting then instead of a formula like ..
=CONCATENATE(INT(N57),"' - ",(N57-INT(N57))*12,"''")

.. you can use something like this ..
=CONCATENATE(TEXT(INT(N57),"0"),"' - ",TEXT((N57-INT(N57))*12,"General"),"''")

Further information can be found here:
http://support.microsoft.com/kb/94202
 
Upvote 0

Forum statistics

Threads
1,224,516
Messages
6,179,231
Members
452,898
Latest member
Capolavoro009

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