Description:
If we want to deal with Cell or Range we can directly mention the object and change its properties or call its methods. We can also deal with Cells or Range by simply selecting it. Then we can use Selection object to refer Selected Cells, Range or any other Objects.
We select cell range in Excel VBA to do particular task with the selection. For example we may want to change the background color of a range and we may want to change the font to Bold. In this case we do not required to loop each and every cell of the range to change the background color and font.
Select Cell Range in Excel VBA – Solution:
We can use Select method of Range or Cell to select it and do whatever you want to do.
Select Cell Range in Excel VBA – Example:
Following are the various examples which will show you how to select a range and perform some task.
Example to Select a Cell
In this example I am selecting a Cell using Select method of Cell.
Sub sbSelectACell() 'Selecting a Cell Cells(2, 3).Select 'This will select the Cell at 2nd row and 3rd column End Sub
Example to Select a Range
In this example I am selecting a Range using Select method of Range.
Sub sbSelectARange() 'You can also use Range Object Range("C3").Select 'Collection of Cells OR Multiple Cells = Range Range ("B2:C4").Select ' It will Select B2,B3,B4,C2,C3,C4 End Sub
Example to Select a Range and change the background color
In this example I am selecting the range from B2:C4 using Select method. And changing the background color to red using ColorIndex Property of Range.
Sub sbSelectARangeandForamt() 'Selecting a Range Range("B2:C4").Select ' It will Select B2,B3,B4,C2,C3,C4 Selection.Interior.ColorIndex = 3 End Sub
Instructions
- Open an Excel Workbook
- Press Alt+F11 to open VBA Editor
- Insert a Module from Insert Menu
- Copy the above code and Paste in the code window
- Save the file as macro enabled workbook
- Press F5 to execute it
Good Excellent
Hi Mekesh,
Thanks for your feedback.
Thanks-PNRao!
Hello sir,
i am very enthusiastic to learn vba so please guide me.i know some basics.I have seen many websites about this.I hope you are the best one to assist vba and i was so exiting while i have seen this site.I think you offered best vba module i have never seen before.I believe myself i am perfect in VBA under your guidelines.Thank you sir
Hi Bharat,
Thanks for showing interest to learn VBA! Yes, our goal is to provide the course with complete practical examples, instead of explaining only concepts. We committed to serve our customers with the best approach to make them experts in VBA, so that their satisfaction will help us to grow in this platform.
Thank you-PNRao!
Hello Sir, I have been going through your website for the past few weeks and it has tremendously helped with some of my codes. Although I have some experience in Access VBA, I have not used Excel VBA that much except to create some macros to help me do my job better. I work in data analysis for a public accounting firm and I find the examples very useful. Do you encourage asking specific questions (short) about vba code? Thanks for the excellent service you are doing for the Excel users community.
Hi Rohini,
Thanks for your feedback! You can feel free to ask questions regarding VBA or Excel. We are glad to know that our site is useful for Excel users. We are happy to help you by answering your questions.
Thanks-PNRao!
Hi,
I need your help to select rows from a report(row and column # are not fixed it gets changed frequently since these are filtered). Once we filter accordingly we are left with a range of info. Can u just help me out in this case..
Hi Girish,
You can find the last row or column dynamically and use in your code:
Please refer the below examples:
http://analysistabs.com/excel-vba/codes-examples-macros-how-tos-most-useful-basics-advanced/#bm2
Thanks
PNRao!
Hi,
I actually tried using the above codes prior asking u this. This however goes till it find a blank row/column. I actually need code the macro such that it checks the filtered data and deletes/copies the entire row. I m not sure how to crack this i m not familiar with loop iteration as well. So need your support on helping me out this.. . Thanks
Hi,
I just begin to learn VBA, I tried a code to copy data from specific cells in one workbook to some other workbooks, based on conditions.
I used simple IF conditions for entire procedure. i need to copy this data every day. so I applied conditions based on date.
now compiler is saying “Procedure is Too Long” .
I want to know how to increment the cell with the help of a variable.
Eg:
day 1 data copied to E5
day 2 data copied to E6
Please suggest me, how to go ahead.
Thanks
Rajesh
How to use VBA codes for admission book?
You can use to add new admissions in a specific range of cells. And you use VBA to perform calculation and print the results in Range.
Please specify your requirement in detailed.
Thanks!