Used range plus One row

teatimecrumpet

Active Member
Joined
Jun 23, 2010
Messages
307
Hi,

I'm trying to use some vba code to email the usedrange of an excel sheet.

My vba code works but, although trivial, the bottom border of the last cells isn't copied.

is it possible to modify the below to be the "Usedrange" + 1 row to grab the bottom border?

Set rng = ActiveSheet.UsedRange

thanks,
Mike
 

Excel Facts

Back into an answer in Excel
Use Data, What-If Analysis, Goal Seek to find the correct input cell value to reach a desired result
Code:
With ActiveSheet.UsedRange
    Set rng = Range(.Cells, .Offset(1,0)
End With
or
Code:
With ActiveSheet.UsedRange
    Set rng= .Resize(.Rows.Count + 1, .Columns.Count)
End With
 
Upvote 0
Hi Mike,

Thanks for the reply! Turns out it was just a bug(?). Exiting and booting outlook made the original code work...


But thanks for those two pieces of code which will probably be useful down the line.
 
Upvote 0

Forum statistics

Threads
1,224,517
Messages
6,179,242
Members
452,898
Latest member
Capolavoro009

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