Simple Conditional Formatting formula to revert line item back to normal after selecting from drop-down menu?

booleanboolean

New Member
Joined
Feb 25, 2017
Messages
37
Hi all,

I can't figure this out for the life of me, but I basically have a call log with many columns. The columns involved here would be column H "Request Type" and Column N "Status."

I have a formula for column H where the row will highlight if the request type "Shift Swap" from a drop-down menu is selected. The row will highlight in fuchsia. I now need another formula for column N (Status) that will revert the same line item back to normal once a user selects "Completed" from column N.

This may involve an IF statement under conditional formatting, but I'm a newbie and can't figure it out. Please refer to the picture (hopefully it uploaded), but basically once "Completed" is selected, the entire row needs to revert back to normal.

Thanks in advance.

gDx8pOq


gDx8pOq
 

Excel Facts

What is the last column in Excel?
Excel columns run from A to Z, AA to AZ, AAA to XFD. The last column is XFD.
in conditional formatting use the following formula

=And ( $H1 = "Shift Swap", $N1 <> "Completed" )

if the whole columns are selected as the range to apply to
Otherwise , use the first row in the range
if the range selected for conditional formatting is A5:Z2000 then use the first row 5

=And ( $H5 = "Shift Swap", $N5 <> "Completed" )
 
Last edited:
Upvote 0

Forum statistics

Threads
1,214,528
Messages
6,120,064
Members
448,941
Latest member
AlphaRino

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