changing the "status" depending on criteria based in other cells

baggers719

Board Regular
Joined
Sep 18, 2009
Messages
104
Hi,

I'm trying to automatically change the status of a project which is dependent on the contents of other cells.

This is the criteria I need:

Column A displays either a "1" or "0" depending if certain criteria are met. This works ok.

I then want Column B to display the following:

Needs to display "Shipped" if column A = 1 and column AJ = "Shipped"
then if this is not true and only column A = 1 then it needs to say "Ready". Else the display should read "Not ready"

this is the formula I have used and I can't get it to work.

= IF(AND(A5=1,AJ="Shipped"),"Shipped", IF(AND(A5=1,AJ="Not Shipped"),"Ready","Not Ready"))

Thanks for your time. I really appreciate it as always.

Sean
 

Excel Facts

When they said...
When they said you are going to "Excel at life", they meant you "will be doing Excel your whole life".
It looks like you forgot the row number after the "AJ" column references in your formula, i.e.

= IF(AND(A5=1,AJ5="Shipped"),"Shipped", IF(AND(A5=1,AJ5="Not Shipped"),"Ready","Not Ready"))
 
Upvote 0

Forum statistics

Threads
1,224,534
Messages
6,179,391
Members
452,909
Latest member
VickiS

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