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
 
Thread 'Is this public key encryption?'
I've tried to intuit public key encryption but never quite managed. But this seems to wrap it up in a bow. This seems to be a very elegant way of transmitting a message publicly that only the sender and receiver can decipher. Is this how PKE works? No, it cant be. In the above case, the requester knows the target's "secret" key - because they have his ID, and therefore knows his birthdate.
I tried a web search "the loss of programming ", and found an article saying that all aspects of writing, developing, and testing software programs will one day all be handled through artificial intelligence. One must wonder then, who is responsible. WHO is responsible for any problems, bugs, deficiencies, or whatever malfunctions which the programs make their users endure? Things may work wrong however the "wrong" happens. AI needs to fix the problems for the users. Any way to...
Back
Top