Macro: Select Ranges Using Go to-->special-->last cell and current range

jjobrien03

New Member
Joined
Sep 2, 2014
Messages
41
I manage a database that must be updated with information daily, but I never know how many entries I will have to input in a day. Herein lies my problem. When I created a macro to run my submacro (to copy my text manipulation formulas which are frozen in cells B2:G2) then use go to-->special-->last cells in order to paste those formulas into the raw data I have just input (B6493:G6531) I encounter an error as the macro only copies into the specific range I used to run the macro the first time. How do I use VBA to paste into all the cells I need to rather than just my pre-defined range? I was trying to use "last cell" and "current region", but once I drag the active cell over to copy the rows B6531:G6531 I change the macro such that it only pastes into those rows everytime, or at least that number of rows. I don't know if I'm describing it accurately enough, but I have posted the VBA Code below (which I am pretty unfamiliar with), I can try to post pictures as well to better illustrate the situation. Thanks for the help!




Sub lastcells()
'
' lastcells Macro
'
' Keyboard Shortcut: Ctrl+Shift+R
'
Application.Run "'formatting_9-8-2014_input.xlsm'!Copy_Rows" *all this does is copy B2:G2
Selection.SpecialCells(xlCellTypeLastCell).Select
ActiveCell.Offset(0, -11).Range("A1").Select
Selection.CurrentRegion.Select
ActiveCell.Offset(0, -5).Range("A1:F39").Select
ActiveCell.Activate
ActiveSheet.Paste
Application.CutCopyMode = False
End Sub

The bold cells are those that I input manually and the regular cells are the outputs of the formulas I am trying to copy from B2:G2 into the last range of raw data (bold text ) I have input into my database.

TEST 2013-AAA B TEST 2013-AAA*BTEST 2013-AAA BTEST 2013-AAA BTRUE142142/ 5x
TEST 2013-BBB C TEST 2013-BBB*CTEST 2013-BBB CTEST 2013-BBB CTRUE145145/5x
TEST 2013-AAA 1 TEST 2013-AAA*1TEST 2013-AAA 1TEST 2013-AAA 1TRUE147147/5x
TEST 2013-AAA 2 TEST 2013-AAA*2TEST 2013-AAA 2 TEST 2013-AAA 2TRUE150150/5x
TEST 2014-CBA D TEST 2014-CBA*DTEST 2014-CBA DTEST 2014-CBA DTRUE155155/ 5x

<colgroup><col><col><col><col><col><col><col><col><col><col><col><col></colgroup><tbody>
</tbody>
 
Last edited:

Excel Facts

Pivot Table Drill Down
Double-click any number in a pivot table to create a new report showing all detail rows that make up that number
what about this? Basically it fills down the cells in B2:G2 to the end of the current region (based on A1).

Code:
With Range("A1").CurrentRegion
  .Offset(1, 1).Resize(.Rows.Count - 1, 6).FillDown
End With
 
Upvote 0
Sorry, I am a VBA beginner and just starting to learn. So what your code is doing is after I define Range("A1") using current region, it moves one cell down and one to the right, then resizes the range to (why the negative one?) then six rows. FillDown copies down the range. Do i insert your code after defining range A1 as below? How does it know when to stop filling cells in the current range because I have 6,000+ rows and counting and each day is represented by a different range of the same format separated by "empty row, date, empty row". This is mainly a scrap sheet for submission into a final database.

Sub lastcells()
'
' lastcells Macro
'
' Keyboard Shortcut: Ctrl+Shift+R
'
Application.Run "'formatting_9-8-2014_input.xlsm'!Copy_Rows" *all this does is copy B2:G2
Selection.SpecialCells(xlCellTypeLastCell).Select
ActiveCell.Offset(0, -11).Range("A1").Select

With Range("A1").CurrentRegion .Offset(1, 1).Resize(.Rows.Count - 1, 6).FillDownEnd WithActiveCell.Activate
ActiveSheet.Paste
Application.CutCopyMode = False
End Sub
 
Upvote 0
the code I offered was to replace your current code

but I'm not sure now as there is mention of "empty row, date, empty row" which is not how databases are done

if your set up like a database, then what I offered should be good
if not, then best to start again
 
Upvote 0

Forum statistics

Threads
1,214,592
Messages
6,120,433
Members
448,961
Latest member
nzskater

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