I Have a LEN Question

Mykro

Active Member
Joined
Oct 17, 2002
Messages
337
This Newbie to Excel would like to know how the LEN function works in this example...
=IF(LEN(D11),IF(D11+C11<F11,"LOST","WON"),"")
This message was edited by Mykro on 2002-11-01 10:57
 

Excel Facts

Can a formula spear through sheets?
Use =SUM(January:December!E7) to sum E7 on all of the sheets from January through December
Excel undertands the FALSE boolean as 0, and TRUE as any number different than 0. So, if the cell D11 has anything in it, the LEN() formula makes Excel calculate the TRUE part of the IF...
 
Upvote 0
On 2002-11-01 10:52, Mykro wrote:
This Newbie to Excel would like to know how the LEN function works in this example...
=IF(LEN(D11),IF(D11+C11<F11,"LOST","WON"),"")

A wild guess...

=IF(COUNTBLANK(C11:D1),"",IF(SUM(C11:D11)<F11,"LOST","WON"))

is probably what you are looking for?
This message was edited by Aladin Akyurek on 2002-11-01 12:39
 
Upvote 0
Juan, I've noticed that without the "")
on the end of the function it returns ####
When there is no data entered and just using a regular "if" statement without the LEN function with no data entered it returns it as false or "won". So, in order to have it return with it blank,the statement needs to have the LEN funtion with "") at the end..
Correct ??
This message was edited by Mykro on 2002-11-01 16:48
 
Upvote 0

Forum statistics

Threads
1,214,515
Messages
6,119,973
Members
448,933
Latest member
Bluedbw

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