Automating a creation of a formula for each row of info

saitoa

Board Regular
Joined
Mar 2, 2005
Messages
50
I am new to the world of VBA so please forgive me if this is very simple.

I am currently importing information from another sheet into the active one so I can manupulate the data using the following:

Sub CopyTemplate()

Dim lastRow As Long
lastRow = Range("A65536").End(xlUp).Row
If lastRow > 11 Then
Range("A11:AA" & lastRow).Clear
Else
MsgBox "There is no information to clear", vbInformation, "ERROR"
End If
Windows("order_temp.xls").Activate
Range("A2").Activate
Set startcell = ActiveCell
Set lastcell = ActiveCell.End(xlDown)
Range(startcell, lastcell.Offset(0, 15)).Copy
Windows("order_sheet.xls").Activate
Range("A10").Select
Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
:=False, Transpose:=False


End Sub

For each entry in the D column that is imported, I want the VBA to also create another entry in the AA column using a formula. So if the data in the D column is "ABC" I want the data in the AA Column to be "ABC Corp"

Is there a way to do this? Also, can someone tell me:

1. How to select everything EXCEPT rows 1-10? I'm currently clearing the sheet before importing using

Range("A11:AA" & lastRow).Clear

but there has to be a better way

2. Is there a way to import information from an Excel sheet that is NOT open in Excel? Since the file being read in is a template, I should not want to have to open it every time in order to copy over the information.

Thank you VERY much!
 

Excel Facts

What is the last column in Excel?
Excel columns run from A to Z, AA to AZ, AAA to XFD. The last column is XFD.
Did you ever figure this out b/c i need help with it as well. I need to import from another spreadsheet and replace one of the cells with an equation.
 
Upvote 0

Forum statistics

Threads
1,214,974
Messages
6,122,536
Members
449,088
Latest member
RandomExceller01

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