Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
I found the code to add values to a sheet without opening the sheet but am
trying to modify it and can't seem to figure out what I am doing wrong. I need to find the next empty cell in column "A" and add the new values at that row. Any thoughts or improvements to the code is greatly appreciated. Here is the code: Sub AddToFile() Dim DestWB As Workbook Dim DBFile As String Dim mytitle As String mytitle = "Add Data To File" DBFile = "C:\Projects\Lowry\Estimate sheet for Bogner.xls" 'Check if Read / Write File Already Open If FileLocked(DBFile) Then msg = MsgBox("Read / Write File Already Open.", 16, mytitle) Else Application.ScreenUpdating = False Set DestWB = Workbooks.Open(DBFile, Password:="mypassword") r = 1 ******PROBLEM OCCURS AT NEXT STATEMENT*********** Do Until Workbooks(DBFile).Worksheets("Sheet2").Cells(r, 1) = "" r = r + 1 Loop With Worksheets(2).Range("A2:A2") '<< change as required .Formula = mytitle .Copy .PasteSpecial Paste:=xlPasteValues DestWB.Close True End With End If Application.ScreenUpdating = True End Sub |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Code Error Problem | Excel Programming | |||
Protect Sheet with code, but then code will not Paste error. How do i get around this. Please read for explainations.... | Excel Programming | |||
OnTime code error "can't execute code in break mode" | Excel Programming | |||
Problem w/ Code- Error 91 @ run-time | Excel Programming | |||
Code Error - Run Time Error 5 (Disable Cut, Copy & Paste) | Excel Programming |