How can I use the offset property in VBA to populate a variable in Excel?

  • Thread starter Thread starter jsbxd9
  • Start date Start date
  • Tags Tags
    Debugging Excel
AI Thread Summary
The discussion revolves around a VBA code issue where the user is attempting to color cells based on the population of a referenced cell. The code successfully colors cells but encounters a problem when trying to use the Offset property to reference a variable, 'strMyVal'. The issue arises when attempting to access a cell with a negative row offset, which is illegal and leads to errors. Suggestions include checking if the ActiveCell exists before using the Offset method and ensuring that the row and column offsets are valid. Additionally, guidance is provided on how to reference cells relative to the active cell using the Offset method, clarifying the parameters for row and column offsets. Overall, the conversation emphasizes troubleshooting techniques and proper referencing in VBA.
jsbxd9
Messages
5
Reaction score
0
Hello all. I am trying to get my code to color cells if a referenced cell is populated. That part works but when I tried to populate another cell a different color I encountered a problem. You can see where the mistake comes in on the code. It is when I try to populate a variable 'strMyVar' with an offset property. I have underlined where I am having the problem. Any suggestions?

Sub colorcells()
Dim x, n, y, i As Double
Dim strMyVal As String
For n = 1 To 3000
Cells(n, 1).Activate
If Cells(n, 1) <> ("") Then
For x = 1 To 7
If x < 7 Then
Cells(n, x).Activate
ActiveCell.Interior.Color = RGB(252, 213, 180)
End If
If x >= 7 Then
Cells(n, x).Activate
strMyVal = ActiveCell.Offset(-3, 0).Value
If strMyVal <> ("") Then
ActiveCell.Interior.Color = RGB(255, 255, 153)
End If
End If
Next x
x = 1
End If
Next n
End Sub
 
Technology news on Phys.org
jsbxd9 said:
Hello all. I am trying to get my code to color cells if a referenced cell is populated. That part works but when I tried to populate another cell a different color I encountered a problem. You can see where the mistake comes in on the code. It is when I try to populate a variable 'strMyVar' with an offset property. I have underlined where I am having the problem. Any suggestions?

Code:
Sub colorcells()
Dim x, n, y, i As Double
Dim strMyVal As String
For n = 1 To 3000
Cells(n, 1).Activate
    If Cells(n, 1) <> ("") Then
        For x = 1 To 7
            If x < 7 Then
                Cells(n, x).Activate
                ActiveCell.Interior.Color = RGB(252, 213, 180)
            End If
            If x >= 7 Then
                Cells(n, x).Activate
                [U]strMyVal = ActiveCell.Offset(-3, 0).Value[/U]
                    If strMyVal <> ("") Then
                        ActiveCell.Interior.Color = RGB(255, 255, 153)
                    End If
            End If
        Next x
        x = 1
    End If
Next n
End Sub
I wrapped CODE tags around your code so that it would stay formatted. It's been a long time since I've coded anything in VBA but the first thing that jumps out at me is the question of whether ActiveCell.Offset(-3, 0) is ever null. If so, attempting to retrieve value from a null object will break.
 
Following on from what Borg mentioned above, can you first check that your object being referenced exists?

What is the ActiveCell object structure and what are the valid values for the offset index parameter?
 
The problem is you are trying to address a cell with a negative row number. If you put a debug print statement in your code like the below, you'll see that the active cell is $G$1 just before the error. The offset operation tries to address a negative row value, which is illegal.

Code:
Cells(n, x).Activate
Debug.Print ActiveCell.Address
strMyVal = ActiveCell.Offset(-3, 0).Value
 
Thanks for all the input. Very helpful. I am not a programmer just an engineer trying to make my job a little easier.

Hotvette, how should I reference a cell to the left of an active cell??
 
For the offset method (should be documented in VBA help), the first parameter is row offset and the 2nd is column offset:

Code:
strMyVal = ActiveCell.Offset(0, -1).Value   'cell on immediate left of active cell
strMyVal = ActiveCell.Offset(0, 1).Value    'cell on immediate right of active cell
strMyVal = ActiveCell.Offset(-1, 0).Value   'cell immediately above the active cell
strMyVal = ActiveCell.Offset(1, 0).Value    'cell immediately below the active cell
 
Dear Peeps I have posted a few questions about programing on this sectio of the PF forum. I want to ask you veterans how you folks learn program in assembly and about computer architecture for the x86 family. In addition to finish learning C, I am also reading the book From bits to Gates to C and Beyond. In the book, it uses the mini LC3 assembly language. I also have books on assembly programming and computer architecture. The few famous ones i have are Computer Organization and...
I had a Microsoft Technical interview this past Friday, the question I was asked was this : How do you find the middle value for a dataset that is too big to fit in RAM? I was not able to figure this out during the interview, but I have been look in this all weekend and I read something online that said it can be done at O(N) using something called the counting sort histogram algorithm ( I did not learn that in my advanced data structures and algorithms class). I have watched some youtube...
Back
Top