Selection.End(xldown).Select variable number of times

Will85

Active Member
Joined
Apr 26, 2012
Messages
253
Office Version
  1. 365
Platform
  1. Windows
In column A, I have strategically placed the value of x in specific rows.

I use a macro that goes to column A and then executes selection.end(xldown).Select a certain number of times depending on which row I want it to land on.

For example if I want it to select the third row with an x I use:

Range("A1").Select
selection.end(xldown).Select
selection.end(xldown).Select
selection.end(xldown).Select


I would prefer to be able to tell it to go down a specific # of times based on the value in a cell on another sheet.

Additionally, I need it to look up this value, instead of pointing to a specific cell reference.

For example, Id want to index match the value based on an account number, the account number its looking up can be hardcoded inside the macro itself.

Sheet2 has account numbers in column A and the value I am seeking in column B.
 
Last edited:
You will need to record a macro protecting the sheet with the parameters you want & then use that in the code I supplied, but add the userinterfaceonly at the end.
 
Upvote 0

Excel Facts

Excel Joke
Why can't spreadsheets drive cars? They crash too often!
Its still doing this weird thing where its allowing me to type in the unprotected cells, but the actual highlighted outline of the active cells has disappeared, so now users dont know if the cell they clicked on has been activated or not. I dont know if I am describing correctly, but the basic function of clicking a cell and getting the darker border around the active cell, that has disappeared.

I tried this, which is resulting in the issue:

Sub x()
Dim Shp As Shape
ActiveSheet.Protect DrawingObjects:=False, Contents:=True, Scenarios:= _
False, AllowDeletingRows:=True, userinterfaceonly:=True
Set Shp = ActiveSheet.Shapes(Application.Caller)
With Shp.TopLeftCell.EntireRow
.Offset(-1).Copy
.Offset(-1).Insert xlDown
.Offset(-2).Locked = False
.FormulaHidden = False
.Offset(-2).RowHeight = 50
End With
End Sub


So now I am using this, which does not result in the error. i think there is something missing when using the userinterfaceonly code

This works:

Sub x2()
ActiveSheet.Unprotect
Dim Shp As Shape
Set Shp = ActiveSheet.Shapes(Application.Caller)
With Shp.TopLeftCell.EntireRow
.Offset(-1).Copy
.Offset(-1).Insert xlDown
.Offset(-2).Locked = False
.FormulaHidden = False
.Offset(-2).RowHeight = 50
End With
ActiveSheet.Protect DrawingObjects:=False, Contents:=True, Scenarios:= _
False, AllowDeletingRows:=True
End Sub

You will need to record a macro protecting the sheet with the parameters you want & then use that in the code I supplied, but add the userinterfaceonly at the end.
 
Upvote 0
If the 2nd code works, then use it.
Why you're not getting the outline around the active cell I don't know, as I don't get that
 
Upvote 0

Forum statistics

Threads
1,221,417
Messages
6,159,789
Members
451,589
Latest member
Harold14

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