Hey all I am looking to see how to go about moving 1 row over where I am currently in my spreadsheet.
I have tried:
Dim xlsApp As Excel.Application
Dim xlsWB As Excel.Workbook
Dim xlsSheet As Excel.Worksheet
Dim xlsCell As Excel.Range
xlsCell = xlsSheet.Range("A1", "A100")
For Each oRowRange As Excel.Range In xlsCell.Rows
For Each oCellRange As Excel.Range In oRowRange.Columns
If colorRGB = "252, 213, 180" Then
Debug.WriteLine(oCellRange.Text)
oCellRange.Offset(0, 1).Select()
Debug.WriteLine(oCellRange.Text)
etc...
End If
Next
Next
In the example above, it keeps putting the same text:
BOB
BOB
When it really should be:
BOB
JON
So any help would be great!