Nested Mess

mrowe

Board Regular
Joined
Feb 17, 2002
Messages
232
HELP!

I'm not sure how to get 3 things into a nested statement.

Here's the logic (mmmm?)

IF G1 NOT "" AND I1 > 0 Then "PAY AGREED"
OR IF I1 = ISERROR Then "Reject Copy"

is this possible.
I'm sure it is, but it's friday afternoon
:)
Thanks
Matt
 

Excel Facts

What do {} around a formula in the formula bar mean?
{Formula} means the formula was entered using Ctrl+Shift+Enter signifying an old-style array formula.
I think this is it

=IF(G1<>"",IF(I1>0,"Pay Agreed",""),"notagreed")

but without test data cant be sure
 
Upvote 0
if g1 is not equal to blank,then if i1 is greater than 0 "pay agreed" else pay not agreed (I think)
 
Upvote 0
Your information is not complete; you can try the following.

=IF(ISERROR(I1),"Reject Copy",IF(AND(G1<>"",I1>0),"Pay Agreed",""))
 
Upvote 0
On 2002-05-03 07:34, mrowe wrote:
HELP!

I'm not sure how to get 3 things into a nested statement.

Here's the logic (mmmm?)

IF G1 NOT "" AND I1 > 0 Then "PAY AGREED"
OR IF I1 = ISERROR Then "Reject Copy"

is this possible.
I'm sure it is, but it's friday afternoon
/board/images/smiles/icon_smile.gif
Thanks
Matt

You need to specify the data type of I1 and G1 may possibly take on, in particular when you mention ISERROR wrt I1.

Try this:

=IF(LEN(G1),IF(ISNUMBER(I1),IF(I1,"PAY AGREED","I1 is 0: What Now?"),"Reject Copy"),"G1 is kind of blank: What Now?")

:)

Aladin
 
Upvote 0

Forum statistics

Threads
1,213,530
Messages
6,114,163
Members
448,554
Latest member
Gleisner2

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