IF(AND(OR Formula

Andrew Skibbz

New Member
Joined
Mar 29, 2017
Messages
28
Hi,
I have the following formula:
=IF(AND([@[Received_Date(Final)]]<>””,[@[Received_Date(Final)]]<today(),trim([@[status_name]])<>”Completed”),TODAY()+TIME(7,0,0),[@[Received_Date(Final)]])</today(),trim([@[status_name]])<>

Basically the formula moves a date to today’s date if the status name is not equal to “completed”

I want to change this to move date if not equal to “Completed” or “Cancelled”

Any Help appreciated!

Thanks,
Andrew
 

Excel Facts

Last used cell?
Press Ctrl+End to move to what Excel thinks is the last used cell.
I think we are already confused, you can put an example of your data, where you can see the titles of the table.7

Or


You could upload a copy of your file to a free site such as www.box.com or www.dropbox.com. Once you do that, mark it for 'Sharing' and you will be given a link to the file that you can post here. If the workbook contains confidential information, you could replace it with generic data.
 
Last edited:
Upvote 0
=IF(AND([@[Received_Date(Final)]]<>"",[@[Received_Date(Final)]]<TODAY(),TRIM([@[status_name]])<>"Completed"),TODAY()+TIME(7,0,0),[@[Received_Date(Final)]])
 
Upvote 0
Have you tried the suggestion in post#3?
 
Upvote 0
This can't be difficult.

In short.
Column A - various dates
Column B - Status (Completed, Cancelled, Processing etc...)

All I want in Column C is:

If Date in Column A and Status in Column B is less than today's date and not equal to "Completed or Cancelled", move to today's date.
 
Upvote 0
In that case how about
=IF(AND([@[Received_Date(Final)]]<>"",[@[Received_Date(Final)]]< today(),trim([@[status_name]])<>"Completed",trim([@[status_name]])<>"Cancelled"),TODAY()+TIME(7,0,0),[@[Received_Date(Final)]])
 
Upvote 0

Forum statistics

Threads
1,216,231
Messages
6,129,630
Members
449,522
Latest member
natalia188

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