Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
I need a formula that changes the value of one cell based on the value of
another. If my value in A2 equals DS I want to change the value of cell M2 to match the value of B2. Else do not change any values. T.I.A. Dayton |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Dim cell as Range
Set cell = ???? ' Activecell, or Range("C2"), or ??? If Range("A2") = "DS" then cell = Range("B2") End If -- sb "dayton" wrote in message ... I need a formula that changes the value of one cell based on the value of another. If my value in A2 equals DS I want to change the value of cell M2 to match the value of B2. Else do not change any values. T.I.A. Dayton |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
formula in cell m2
=if(a2="ds",b2,"") "dayton" wrote in message ... I need a formula that changes the value of one cell based on the value of another. If my value in A2 equals DS I want to change the value of cell M2 to match the value of B2. Else do not change any values. T.I.A. Dayton |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
change cell contents when pull down menu choices change | Excel Worksheet Functions | |||
making copied cells change with change in original cell | Excel Worksheet Functions | |||
How do I change a number in one cell to change a series of cells? | Excel Discussion (Misc queries) | |||
excel deleting rows last cell does not change. How to change? | Excel Discussion (Misc queries) | |||
Change workbook sheet reference using cell A1 to change a vairable | Excel Worksheet Functions |