+ Reply to Thread
Results 1 to 3 of 3

Find an excel using VBA

Hybrid View

  1. #1
    Registered User
    Join Date
    02-09-2007
    Location
    India
    Posts
    5

    Find an excel using VBA

    Hi,

    I have created macro to copy workbook from a main workbook and save it in a location with filename as date which i am giving input earlier... I need to check whether the file i am saving is already in the location..

    Below code is for saving the excel in the location.. (excel is created between start date and end date i am giving as input)...


    Workbooks.Open ("C:\Main.xls")
    Worksheets("Sheet1").Activate
    Worksheets("Sheet1").Range("E3:E185").ClearContents
    Worksheets("Sheet1").Range("B2").ClearContents

    For i = 0 To Sheetcount
    date1 = dateval1 + i
    filename = Format(date1, "dd-mm-yy") & ".xls"
    ActiveWorkbook.SaveAs filename:=filepath & filename
    Worksheets("Sheet1").Range("B2") = date1
    ActiveWorkbook.Save

    Next i

    If yuo could provide me some code that would be of great help..
    Thanks,
    srikanth

  2. #2
    Forum Contributor
    Join Date
    01-24-2007
    Location
    Southampton, UK
    Posts
    137
    You can check if a file already exists by using the DIR function....

    If DIR (filepath & filename) <> "" Then
    Msgbox "File already exists"
    ' further lines of code as required
    Exit Sub
    End If
    ' continue with code for SaveAs

  3. #3
    Registered User
    Join Date
    02-09-2007
    Location
    India
    Posts
    5

    Smile

    Quote Originally Posted by Loz
    You can check if a file already exists by using the DIR function....

    If DIR (filepath & filename) <> "" Then
    Msgbox "File already exists"
    ' further lines of code as required
    Exit Sub
    End If
    ' continue with code for SaveAs

    Thanks a lot LOZ.. it is really usefull

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1