Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
How can put a text string in a cell (message) based on tha calculation in
another cell? |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
On Thu, 9 Nov 2006 16:38:02 -0800, Dennis C BroadWare <Dennis C
wrote: How can put a text string in a cell (message) based on tha calculation in another cell? In message cell, enter a formula of the type: =IF(another_cell = good_result,"another_cell showed good result", "") --ron |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Ron,
Are you trying to do this with VBA? If so, For example, cell C4 will show result, if C3=C2 Range("C4").Select ActiveCell.FormulaR1C1 = "=IF(R[-1]C=R[-2]C,""good"",""bad"")" The RC lets you select the offset of the rows and columns, this says if cell one row above = cell two rows above, then return "good", else "bad" Let me know if this is what you're looking for Andrew J Armstrong To do this Ron Rosenfeld wrote: On Thu, 9 Nov 2006 16:38:02 -0800, Dennis C BroadWare <Dennis C wrote: How can put a text string in a cell (message) based on tha calculation in another cell? In message cell, enter a formula of the type: =IF(another_cell = good_result,"another_cell showed good result", "") --ron |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
word match in string text in cell, color format cell | Excel Discussion (Misc queries) | |||
FIND / SEARCH text compare cell to string in 3rd cell | Excel Discussion (Misc queries) | |||
Compare text string of a cell in Column A VS another cell in Colum | New Users to Excel | |||
Sumif text is contained winthin a longer text string in a cell | Excel Worksheet Functions | |||
Display contents of cell in another cell as part of text string? | New Users to Excel |