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
 
=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

Excel Facts

Format cells as time
Select range and press Ctrl+Shift+2 to format cells as time. (Shift 2 is the @ sign).
Glad it's sorted & thanks for the feedback
 
Upvote 0
Sorry for arriving so late, try this:

=IF(AND([@[Received_Date(Final)]] <> "",[@[Received_Date(Final)]] < TODAY(),[@[status_name]] <> {"Completed","Cancelled"}),TODAY()+TIME(7,0,0),[@[Received_Date(Final)]])
 
Upvote 0

Forum statistics

Threads
1,216,074
Messages
6,128,654
Members
449,462
Latest member
Chislobog

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