How to format borders to cells using VBA

Matador_24

Board Regular
Joined
Dec 1, 2011
Messages
205
Hello,

How can select a range of cells and apply a format to it using VBA?
For instance, let's say I want to take range B12 to D12 and remove all borders it has and then apply the border only to the top and bottom of the cell?
In the code, I need to specify that the row is a variable. My columns are always the same however the row is always different, thus, when I determine the range, I need to consider that the row will be a variable, for instance in my example above:
Lastrow = 12

Thanks!

Luis
 

Excel Facts

Create a chart in one keystroke
Select the data and press Alt+F1 to insert a default chart. You can change the default chart to any chart type
You could try something like this.
Code:
Dim LastRow As Long

    LastRow = 12

    With Intersect(Rows(LastRow), Range("B:D"))
        .Borders.LineStyle = xlNone
        With .Borders(xlEdgeTop)
            .LineStyle = xlSingle
            .ColorIndex = 0
            .TintAndShade = 0
            .Weight = xlThick
        End With

        With .Borders(xlEdgeBottom)
            .LineStyle = xlSingle
            .ColorIndex = 0
            .TintAndShade = 0
            .Weight = xlThick
        End With

    End With
 
Upvote 0
Thanks, I will give it a try..... also, how do you set the color to the selection of cells?
I want a light blue, normally I tried this but did not work:

Code:
       .ThemeColor = xlThemeColorLight2
       .TintAndShade = 0.799981688894314
       .PatternTintAndShade = 0
[FONT=wf_segoe-ui_normal]
would you know how to specify color?

Thanks,

Luis[/FONT]
 
Upvote 0

Forum statistics

Threads
1,215,375
Messages
6,124,578
Members
449,174
Latest member
chandan4057

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