Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hi i am trying to use some visual basic code to update
everybodys results depending on there score e.g. if the new value is greater than there current value then it will put "Fail" in there record. here is the code i have tried so far! With Worksheets("sheet1") Set rng = .Range(.Cells(2, 1), .Cells(2, 1).End (xlDown)) End With For Each cell In rng If cell.Offset(0, 26).Value Sheets ("sheet1").Range("AU1").Value Then cell.Offset(0, 27) = "Fail" Else cell.Offset(0, 27) = "Pass" End If If cell.Offset(0, 36).Value Sheets ("sheet1").Range("AV1").Value Then cell.Offset(0, 37) = "Fail" Else cell.Offset(0, 37) = "Pass" End If If cell.Offset(0, 44).Value Sheets ("sheet1").Range("AW1").Value Then cell.Offset(0, 45) = "Fail" Else cell.Offset(0, 45) = "Pass" End If Next Thank you, Robert Couchman |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Updating formulas on workbook | Excel Discussion (Misc queries) | |||
Automatically updating a workbook from a different workbook day by | Excel Discussion (Misc queries) | |||
My workbook links are not updating (its 30,000 KB size workbook). | Excel Discussion (Misc queries) | |||
Auto updating a workbook with data from another workbook | Excel Discussion (Misc queries) | |||
Transparently updating another workbook from the current workbook | Excel Programming |