Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
I would like to compare that the values for each column of two different rows
are identical. If there are differences on the second row flag them somehow. Is this possible? |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
To compare the value in cells in rows 2 and 5
Dim rng as Range, cell as Range Range("2:2,5:5").Interior.ColorIndex = xlNone set rng = Range(Cells(2,1),Cells(2,columns.Count).End(xltoLe ft)) for each cell in rng if cell < cell.offset(3,0) then cell.Interior.ColorIndex = 3 cell.offset(3,0).Interior.Colorindex = 3 end if Next Assumes column 2 has values farthest to the right or they are equal. -- Regards, Tom Ogilvy "Neil" wrote: I would like to compare that the values for each column of two different rows are identical. If there are differences on the second row flag them somehow. Is this possible? |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Compare two columns and find the difference between the two column | Excel Discussion (Misc queries) | |||
I want to compare totals and flag those less than or more than | Excel Discussion (Misc queries) | |||
compare for high with two or more cells and then flag. | Excel Discussion (Misc queries) | |||
How do I compare the difference in two spreadsheets? | Excel Worksheet Functions | |||
charting a difference of 2 columns' w/o adding a difference column | Charts and Charting in Excel |