Offset (1,1)

gheyman

Well-known Member
Joined
Nov 14, 2005
Messages
2,341
Office Version
  1. 365
Platform
  1. Windows
On sheet Worksheet change I want to find the last row in my table and offset by one row and one column and put the words "Enter new category here"

Any help is a appreciated

Code:
Private Sub Worksheet_Change(ByVal Target As Range)

Dim LR As Long

    LR = Cells(Rows.Count, "C").End(xlUp).Row
    
    LR.Offset(1, 1).Select
    
    ActiveCell.Value = "< Enter new Catagory Here"

End Sub
 

Excel Facts

How to find 2nd largest value in a column?
MAX finds the largest value. =LARGE(A:A,2) will find the second largest. =SMALL(A:A,3) will find the third smallest
Try:
VBA Code:
Private Sub Worksheet_Change(ByVal Target As Range)

    Dim LR As Long

    LR = Cells(Rows.Count, "C").End(xlUp).Row
 
    Application.EnableEvents = False
    Cells(lr + 1, "D").Value = "< Enter new Catagory Here"
    Application.EnableEvents = True

End Sub
Note: I used column "D", because one column offset form column "C" is column "D".
Not sure if that is what you intended, it is hard to tell from your post.
 
Upvote 0
Solution
You are welcome.

Note the edits I made to my original reply.
I initially didn't notice that you wanted to offset one column in addition to one row.
 
Upvote 0

Forum statistics

Threads
1,214,807
Messages
6,121,679
Members
449,047
Latest member
notmrdurden

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