Hello All,
I've been tasked by my manager to create a macro that would copy a range of cells from MS Excel to MS Word. So basically when it gets transferred to Word, it becomes a table. Here's the code:
Application.ScreenUpdating = False
Dim appWD As Word.Application, docWD As...
Ok, here's the code I did last night:
Private Sub Create_Copy_Click()
Unload UserOptForm
SrvArea = Range("d5")
svname = SrvArea & " - BOBCopy.xls"
Workbooks.Add.SaveAs FileName:=svname
Windows("The 2004 Book of Business Report.xls").Activate...
Ok, here's the code:
Application.ScreenUpdating = False
Columns("a:a").Select
PurchID = "221"
If TypeName(Cells.Find(PurchID)) <> "Range" Then
MsgBox ("Purchaser ID not found!")
Range("a1").Select
Else: Cells.Find(PurchID).Activate...
Hello,
Is there a command in VBA that allows to delete pages in Word? The way I'm doing it right now is very clunky; I basically record a macro to position the cursor just right below the page break and do a shift+PageUp to cover the upper pages to delete it. Any help would be greatly...
Hello,
I'm trying to copy data from Excel to Access using the Template Wizard. This process works although it involves using the template and saving it. What I would like to do is to transfer directly from one of the Excel tool spreadsheets we're using to Access without needing the template. Is...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.