IF(LEN) within IF(AND( .. having issues..

aedctalk

Board Regular
Joined
Oct 9, 2010
Messages
156
Ok what i'm trying to do is .. If AB5 is greater than the value in configuration J17 AND if there is something typed in W5 then i want to display V5 .. otherwise i want "" (nothing)

I keep getting formula error for below though. How could i modify to get working? :/ Thanks so much :D

=IF(AND(AB5>Configuration!$J$17,IF(LEN(W5)),V5,""))
 

Excel Facts

What is the shortcut key for Format Selection?
Ctrl+1 (the number one) will open the Format dialog for whatever is selected.
Close! There isn't a need for the IF inside of the AND statement. Try:

=IF(AND(AB5>Configuration!$J$17,LEN(W5)>0),V5,"")
 
Upvote 0

Forum statistics

Threads
1,224,603
Messages
6,179,855
Members
452,948
Latest member
UsmanAli786

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