Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8413603
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 10, 20262026-06-10T00:56:59+00:00 2026-06-10T00:56:59+00:00

I want to determine if a change to a sheet includes cells in one

  • 0

I want to determine if a change to a sheet includes cells in one particular row. I tried

Private Sub Workbook_SheetChange(ByVal Sh As Object, ByVal Target As Range)

    Dim i As Integer

    If ActiveSheet.Name = "Yahoo" Then
        If Not Intersect(Target, Range(Cells([YahooID_Row], 1), Cells([YahooID_Row], 999))) Is Nothing Then

        Else

        End If
    End If

End Sub

YahooID_Row is a named integer constant.

I keep getting run time error 1004. How do I do this?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-10T00:57:00+00:00Added an answer on June 10, 2026 at 12:57 am

    Using the strategy you have tried, here’s a working version of your code

    Private Sub Workbook_SheetChange(ByVal Sh As Object, ByVal Target As Range)
        If Sh.Name = "Yahoo" Then
            If Not Intersect(Target, Sh.Rows([YahooID_Row])) Is Nothing Then
    
            Else
    
            End If
        End If
    
    End Sub
    

    The differfences are

    1. Check the the Sh parameter rather than the active sheet. The change that triggered the Event may not be from the ActiveSheet.
    2. Qualify the sheet reference (Range(...) to Sh
    3. Since [YahooID_Row] is a named constant (rather than a named range) use it as an index
    4. Check whole rows rather than just the first 999 columns
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I want to determine if a generic object type (T) method type parameter is
I have a UITableView and I want to determine what cells will be visible
I'm trying to determine if any changes were made to a particular entity object.
I have the following object and I want a dictionary to conditionally determine if
I have a ftp client that allows users to upload files. I want determine
I want to determine which part of audio file contain speech or music. I
I want to determine the screen resolution of the client machine and the set
I want to determine the scroll of the users. I'm using jQuery.. And jquery
I want to determine the following QoS Attribute of my service: Response Time Reliability
While walking HTML5 DOM tree I want to determine whether each element is a

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.