Conditional Format cells that have data validation

Mandy_

New Member
Joined
Jan 29, 2021
Messages
36
Office Version
  1. 365
Platform
  1. MacOS
Hi :)

I am using data validation in cell M5 and also O8 (numeral starting at zero/0).

I would like to write a conditional format that if any change is made to cell M5, that O8 is 0 (which is an option in the drop down list). If conditional format is the right way to solve this? Otherwise I'm open to your suggestions (just not VBA if possible please).

My aim is that once cell M5 is selected, then O8 can be changed from the drop down list. But when M5 is changed, then O8 is zero/0. Blank might also work, but blank isn't in the drop down list. O8's value links to another cell, which is why I want the resulting value to be 0 when M5 is changed.

Thank you for your time,
 

Attachments

  • Screen Shot 2023-09-03 at 11.27.41 pm.png
    Screen Shot 2023-09-03 at 11.27.41 pm.png
    17.5 KB · Views: 6

Excel Facts

How to fill five years of quarters?
Type 1Q-2023 in a cell. Grab the fill handle and drag down or right. After 4Q-2023, Excel will jump to 1Q-2024. Dash can be any character.
There is no way for a worksheet formula to detect that a cell value has changed. This requires VBA. It is actually quite simple in VBA.

This code must be placed into the module for the sheet containing the cells.
VBA Code:
Private Sub Worksheet_Change(ByVal Target As Range)

   Application.EnableEvents = False
   
   If Target.Address = "$M$5" Then [O8] = 0
   
   Application.EnableEvents = True

End Sub

BTW even if it were a way to detect a change without VBA, CF would be the wrong approach. The only way CF could be used to show a 0 in a cell is to apply a custom format of "0" based on a condition. However, this does not affect the underlying value, only what is displayed. CF cannot be used to change the actual value.
 
Upvote 0
Solution

Forum statistics

Threads
1,215,124
Messages
6,123,187
Members
449,090
Latest member
bes000

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