+ Reply to Thread
Results 1 to 10 of 10

Object variable not set

Hybrid View

  1. #1
    Valued Forum Contributor StevenM's Avatar
    Join Date
    03-23-2008
    Location
    New Lenox, IL USA
    MS-Off Ver
    2007
    Posts
    910

    Re: Object variable not set

    I believe what Shg is suggesting is:

    If Not rgCell Is Nothing then
        If Cells(Val(rgCell.Row + 1), rgCell.Column) = year2 Then
    ...
        End if
    End if

  2. #2
    Registered User
    Join Date
    05-18-2012
    Location
    Toronto
    MS-Off Ver
    Excel 2003
    Posts
    59

    Re: Object variable not set

    Actually this did the trick! Works perfectly now ...

    Thanks guys for the repeated help over multiple threads .. I think its great that there are people willing to go out of their way to help beginners like me

    Cheers and have a great day

    Quote Originally Posted by shg View Post
    You can't combine those tests in a single statement -- if the range is Nothing, testing the row gives a runtime errror.
    Quote Originally Posted by JosephP View Post
    per shg's comment you need two tests
    If Not rgCell Is Nothing Then
       if Cells(rgCell.Row + 1, rgCell.Column) = year2 Then
    Quote Originally Posted by StevenM View Post
    I believe what Shg is suggesting is:

    If Not rgCell Is Nothing then
        If Cells(Val(rgCell.Row + 1), rgCell.Column) = year2 Then
    ...
        End if
    End if

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1