Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

In Load_DB() function ThisWorkbook.Save without any issue, however in Generate() resultbook.Save is prompted if overwritten. After click "Yes", the file is not updated(based on timestamp)? when I switch to resultbook.SaveAs (sortedresult), I'm able to see the new file with sorted result. Can you help to see what's wrong with code?

Option Explicit

Sub Load_DB()
    Dim fd As FileDialog
    Dim objfl As Variant
    Dim filenames As String

    Set fd = Application.FileDialog(msoFileDialogFilePicker)
    With fd
        .ButtonName = "Select"
        .AllowMultiSelect = False
        .Filters.Add "Excel Files", "*.xls;*.xlsm;*.tab;*.asc", 1
        .Title = "Choose Database file to import"
        .InitialView = msoFileDialogViewDetails
        .Show
        For Each objfl In .SelectedItems
            filenames = objfl
        Next objfl
        On Error GoTo errorhandler
    End With

        TextBox1.Text = filenames
        ThisWorkbook.Save

    Set fd = Nothing

errorhandler:
    Exit Sub
End Sub

Sub Load_Result()
    Dim fd As FileDialog
    Dim objfl As Variant
    Dim filenames As String

    Set fd = Application.FileDialog(msoFileDialogFilePicker)
    With fd
        .ButtonName = "Select"
        .AllowMultiSelect = False
        .Filters.Add "Excel Files", "*.xls;*.xlsm;*.tab;*.asc", 1
        .Title = "Choose Database file to import"
        .InitialView = msoFileDialogViewDetails
        .Show
        For Each objfl In .SelectedItems
            filenames = objfl
        Next objfl
        On Error GoTo errorhandler
    End With

        TextBox2.Text = filenames
        ThisWorkbook.Save

    Set fd = Nothing

errorhandler:
        Exit Sub
End Sub

Sub Generate()
    Dim result As String
    Dim db As String

    Dim resultbook As Excel.Workbook
    Dim dbbook As Excel.Workbook
    Dim app As New Excel.Application

    If TextBox1.Text = "" Or TextBox2.Text = "" Then
        MsgBox "Please Load DB and Result first"
        Exit Sub
    End If

    db = TextBox1.Text
    result = TextBox2.Text

    Set dbbook = app.Workbooks.Add(db)
    Set resultbook = app.Workbooks.Add(result)

    Dim cov_cell As Range
    Dim sort_col As Integer
    Dim lastrow As Integer
    Dim lastcol As Integer
    Dim hotspot As Range
    Dim hotspot_col As Integer

    Set cov_cell = resultbook.Worksheets(1).Cells.Find("Cov", LookIn:=xlValues, lookat:=xlWhole)
    sort_col = cov_cell.Column

    Set hotspot = resultbook.Worksheets(1).Cells.Find("HotSpot ID", LookIn:=xlValues, lookat:=xlWhole)
    hotspot_col = hotspot.Column

    lastrow = resultbook.Worksheets(1).Cells(resultbook.Worksheets(1).Rows.Count, 1).End(xlUp).Row + 1
    lastcol = resultbook.Worksheets(1).Cells(1, resultbook.Worksheets(1).Columns.Count).End(xlToLeft).Column

     resultbook.Worksheets(1).Range(resultbook.Worksheets(1).Cells(1, 1), resultbook.Worksheets(1).Cells(lastrow, lastcol)).Sort _
    Key1:=resultbook.Worksheets(1).Range(resultbook.Worksheets(1).Cells(2, sort_col), resultbook.Worksheets(1).Cells(lastrow, sort_col)), Header:=xlYes, Order1:=xlAscending, _
    OrderCustom:=1, MatchCase:=False, Orientation:=xlTopToBottom

    Dim sortedresult As String
    sortedresult = Replace(result, ".xls", "-sorted.xls")

    app.DisplayAlerts = False
    resultbook.SaveAs (sortedresult)
    app.DisplayAlerts = True

    Sheet1.Cells(7, 1).Value = "Sorted result:  " + sortedresult

    Dim j As Integer

    Dim cosmid As String
    Dim cosm_header As Range
    Dim cosm_range As Range
    Dim cosm_lastrow As Integer
    Dim cosm_result As Range

    lastrow = dbbook.Worksheets(1).Cells(dbbook.Worksheets(1).Rows.Count, 1).End(xlUp).Row + 1

    Set cosm_header = dbbook.Worksheets(1).Cells.Find("COSMIC_id", LookIn:=xlValues, lookat:=xlWhole)
    Set cosm_range = dbbook.Worksheets(1).Range(cosm_header, dbbook.Worksheets(1).Cells(lastrow, cosm_header.Column))

    For j = 2 To lastrow
        If (IsNumeric(resultbook.Worksheets(1).Cells(j, sort_col).Value)) And CInt(resultbook.Worksheets(1).Cells(j, sort_col).Value) < 100 Then
            If (InStr(resultbook.Worksheets(1).Cells(j, hotspot_col).Value, "COSM") > 0) Then
                cosmid = Replace(resultbook.Worksheets(1).Cells(j, hotspot_col).Value, "COSM", "")
                Set cosm_result = cosm_range.Find(cosmid, LookIn:=xlValues, lookat:=xlWhole)
                Sheet1.Cells(10 + j, 1).Value = dbbook.Worksheets(1).Cells(cosm_result.Row, 1).Value
                Sheet1.Cells(10 + j, 2).Value = dbbook.Worksheets(1).Cells(cosm_result.Row, 5).Value
                Sheet1.Cells(10 + j, 3).Value = cosmid
                Sheet1.Cells(10 + j, 4).Value = resultbook.Worksheets(1).Cells(j, sort_col).Value

            End If

        Else
            Exit For
        End If

    Next j

    resultbook.Close savechanges:=False

    dbbook.Close savechanges:=False
    app.Quit
    Set app = Nothing

End Sub
share|improve this question
Hi, from your code, resultWs in generate() is creating a new workbook, so what you expect it to "save" into ? – Larry Oct 8 '12 at 10:20

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.