Home |
Search |
Today's Posts |
#5
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
In the following code, I am not understanding how to pass the variable value
to my other sheet (Sh2). =============== 'compare sheet 1 with sheet 2 For Each sh1cell In sh1range Set c = sh2range.Find( _ What:=sh1cell, LookIn:=xlValues, LookAt:=xlWhole)' Added "xlWhole" If c Is Nothing Then sh1cell.Offset(0, 2).Value = "No Match Found!" sh1cell.Offset(0, 2).Font.Color = -16776961 sh1cell.Offset(0, 2).Font.Bold = True Else If sh1cell.Offset(0, 1) < c.Offset(0, 1) Then sh1cell.Offset(0, 2).Font.Italic = True sh1cell.Offset(0, 2).ColumnWidth = 25 sh1cell.Offset(0, 2).Value = "Revision Level Change!" sSh1RevIs = sh1cell.Offset(0, 1) ' Capture Revision level of Sh1 if False MsgBox sSh1RevIs 'for testing...Show Rev from Sh1 End If End If Next sh1cell ==================== The variable "sSh1RevIs" captures the value I want (revision level of Sh1) but I cannot figure out how to place this value on the same row (column 3) on Sh2 (compared row of Sh1 and Sh2). -- Regards Rick XP Pro Office 2007 |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Column Chart to compare data | Charts and Charting in Excel | |||
compare data in column A with column B to find duplicates | Excel Discussion (Misc queries) | |||
compare date to column data | Excel Worksheet Functions | |||
How do I compare data in two different spreadsheets i.e. (column . | Excel Discussion (Misc queries) | |||
compare data from one column with another and compare result to yet another | Excel Programming |