ActiveCell and Worksheet_SelectionChange

EssKayKay

Board Regular
Joined
Jan 5, 2003
Messages
233
Office Version
  1. 2007
Platform
  1. Windows
I’m still (or should I say again) working on my Amortization worksheet. I have one other problem. I’m hoping if I can resolve this it will point me in the right direction but we’ll see.
Simply as a test, I have the following code in my Private Sub Worksheet_SelectionChange(ByVal Target As Range) routine.

VBA Code:
If ActiveCell.Offset(0, 0) <= 0 Then
    MsgBox "Empty"
Else
    MsgBox "Populated"
End If

However, I want the active cell to only be in the Range “M32:M400”. Is this possible and if so, any suggestions would be appreciated.
I’m sure I will be back with more questions but for now this should do.


Thanks,
Steve K.
 

Excel Facts

Pivot Table Drill Down
Double-click any number in a pivot table to create a new report showing all detail rows that make up that number
Does this do what you want?
VBA Code:
Private Sub Worksheet_SelectionChange(ByVal Target As Range)
    Dim strMsg As String
    If (Target.Column = 13) Then
        If ((Target.Row >= 32) And (Target.Row <= 400)) Then
            strMsg = "Empty"
            If Application.WorksheetFunction.IsNumber(ActiveCell.Value) Then
                If (ActiveCell.Value > 0) Then
                    strMsg = "Populated"
                End If
            End If
            MsgBox strMsg, vbInformation + vbOKOnly, "Value Check"
        End If
    End If
End Sub
 
Upvote 0
Does this do what you want?
VBA Code:
Private Sub Worksheet_SelectionChange(ByVal Target As Range)
    Dim strMsg As String
    If (Target.Column = 13) Then
        If ((Target.Row >= 32) And (Target.Row <= 400)) Then
            strMsg = "Empty"
            If Application.WorksheetFunction.IsNumber(ActiveCell.Value) Then
                If (ActiveCell.Value > 0) Then
                    strMsg = "Populated"
                End If
            End If
            MsgBox strMsg, vbInformation + vbOKOnly, "Value Check"
        End If
    End If
End Sub

Thank you CephasOz. This did not do exactly what I wanted (probably because I didn't really know what I wanted) but you sent me in the right direction.
I changed the TargetColumn to a If Not Intersect(Target, Range("M33:M400")) Is Nothing Then
I have it working better now. I will still have to play with this a bit but it looks promising.

Again, much appreciated,
Steve K.
 
Upvote 0
I’m still working on my Amortize worksheet. My latest issue is I’m seeing an Error 1004: Application-defined or object-defined error.

I do not know what is triggering this nor particularly what it means. I have uploaded a test file for your review called Try Amortize (rev2).xls to Dropbox (Try Amortize (rev2).xls)

If you wish to assist, and see the error –

1. Download Amortize(rev2).xls from Dropbox. File name Try Amortize (rev2).xls
2. Open the file
3. Click on Paym’t. Made button (upper right corner)
4. This will direct you to the next available Payment Date opening. Enter a date.
5. You will see the 1004 Error.

I wish I could upload my file directly but apparently MrExcel does not allow that. Therefore I hope all works with Dropbox. If you have a problem, let me know.
 
Upvote 0
For me, your code errors on this line, because ActiveCell is A1. Your code has several occurrences of Range("A1").Select so it's not immediately obvious which previous line of code has caused the problem.

Rich (BB code):
If ActiveCell.Offset(-1, 0) <= 0 Then
   If MsgBox("                    --- WARNING ---" _
       & vbNewLine & vbNewLine & "                Do not skip a Payment." & vbNewLine & _

It's rarely necessary to use .Select, .Selection, .ActiveCell etc. It's inefficient, and susceptible to errors like this - where the ActiveCell is not where you think it is.

VBA Code:
'For example, instead of
Range("A1").Select
ActiveCell.FormulaR1C1 = "1"

'Use
Range("A1").Value = 1

Cutting down on the use of .Select should also allow you to reduce the toggling of Application.EnableEvents.

I notice that at the moment, Sub Formulas2Values() appears to call Sub Worksheet_SelectionChange about 8 times, which I'm sure is not the intention.
 
Upvote 0
Solution
For me, your code errors on this line, because ActiveCell is A1. Your code has several occurrences of Range("A1").Select so it's not immediately obvious which previous line of code has caused the problem.

Rich (BB code):
If ActiveCell.Offset(-1, 0) <= 0 Then
   If MsgBox("                    --- WARNING ---" _
       & vbNewLine & vbNewLine & "                Do not skip a Payment." & vbNewLine & _

It's rarely necessary to use .Select, .Selection, .ActiveCell etc. It's inefficient, and susceptible to errors like this - where the ActiveCell is not where you think it is.

VBA Code:
'For example, instead of
Range("A1").Select
ActiveCell.FormulaR1C1 = "1"

'Use
Range("A1").Value = 1

Cutting down on the use of .Select should also allow you to reduce the toggling of Application.EnableEvents.

I notice that at the moment, Sub Formulas2Values() appears to call Sub Worksheet_SelectionChange about 8 times, which I'm sure is not the intention.
Thank you very much Stephen. That appears to have done it. However, I now ran into another issue. I have much more testing to do. I'll keep you posted.

Again, much appreciated. . .
 
Upvote 0

Forum statistics

Threads
1,215,106
Messages
6,123,124
Members
449,096
Latest member
provoking

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top