Lesson#72: Select an area by clicking a button in Excel with VBA

Lesson#72: Select an area by clicking a button in Excel with VBA

Here I will show you how to select an area by clicking a button in Excel with VBA.

1. Go to Developer Tab.

2. Click on Insert.
3. Select Button (Form Control).

4. Put the button on the worksheet by dragging and putting it on the sheet.

5. Immediately Macro name window will appear.6. Click on New.

7. There you have to put this Code.

Sub Button1_Click()
Range(“A1:N20”).Select
End Sub

8. Click on Run Sub/ UserForm.

Now when you go to the spreadsheet and click on the button A1:N20 area will be selected.

See also  Lesson#142: How to take print of all sheets at a time

Hi! I am Puspendu. I am the founder and author of Excelabcd. I am little creative person, blogger and Excel-maniac guy. I hope you enjoy my blog.

Leave a Reply

Your email address will not be published. Required fields are marked *

*