Home |
Search |
Today's Posts |
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Try this:
http://www.softinterface.com/MD/Docu...n-Software.htm Or, this code: Sub Compare2Shts() For Each Cell In Worksheets("CompareSheet#1").UsedRange If Cell.Value < Worksheets("CompareSheet#2").Range(Cell.Address) Then Cell.Interior.ColorIndex = 3 End If Next For Each Cell In Worksheets("CompareSheet#2").UsedRange If Cell.Value < Worksheets("CompareSheet#1").Range(Cell.Address) Then Cell.Interior.ColorIndex = 3 End If Next End Sub Sub CompareAnother2Shts() For Each Cell In Worksheets("CompareSheet#1").Range("A1:J50") If Cell.Value < Worksheets("CompareSheet#2").Range(Cell.Address) Then Cell.Interior.ColorIndex = 3 End If Next For Each Cell In Worksheets("CompareSheet#2").Range("A1:J50") If Cell.Value < Worksheets("CompareSheet#1").Range(Cell.Address) Then Cell.Interior.ColorIndex = 3 End If Next End Sub '...change the range to suit your needs. HTH, Ryan -- Ryan--- If this information was helpful, please indicate this by clicking ''Yes''. "Sue" wrote: I am trying to compare 2 worksheets in a large workbook. One sheet is named 1st Proposed HMIs. The other is named 2nd Proposed HMIs. Both spreadsheets are exactly the same. I would like to compare the 2nd sheet with the 1st sheet and have Excel highlight or shade any cell that has changed or different data in the 2nd sheet. Any ideas? Thanks! |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Excel 2007 comparing dates | Excel Discussion (Misc queries) | |||
Comparing worksheets | Excel Worksheet Functions | |||
comparing excel 2003 and excel 2007 | Excel Discussion (Misc queries) | |||
Comparing two different Worksheets | Excel Worksheet Functions | |||
Comparing worksheets in Excel and highlighting changes | Excel Worksheet Functions |