Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
This is the situation: cell A2 is blank. Should it change to any value, I
want cell A3 to get a certain value, but I don't want cell A3 to contain any formula. Is there any solution? |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
VBA?
Private Sub Worksheet_Change(ByRef Target As Range) If Not Intersect(Range("A2"),Target) Is Nothing Then If Target.Value < "" Then Range("A3").Value = "my value" End If End If End Sub -- HTH Bob Phillips (remove nothere from email address if mailing direct) "Nirel" wrote in message ... This is the situation: cell A2 is blank. Should it change to any value, I want cell A3 to get a certain value, but I don't want cell A3 to contain any formula. Is there any solution? |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
checking that cells have a value before the workbook will close | Excel Worksheet Functions | |||
How can I change a text to a cell's address? | Excel Discussion (Misc queries) | |||
I Need to change reference sheet for all cells on a form | Excel Discussion (Misc queries) | |||
Change a cell's fill color dynamically? | Excel Discussion (Misc queries) | |||
How to get excel cells to change colors depending on value | Excel Worksheet Functions |