+ Reply to Thread
Results 1 to 2 of 2

Connect two workbooks

Hybrid View

  1. #1
    Forum Contributor
    Join Date
    12-06-2015
    Location
    Hong Kong
    MS-Off Ver
    Office 365
    Posts
    520

    Connect two workbooks

    Dear all

    I would like to get some advice to solve one of my Excel file

    I have two Excel files, which 1 is Product price , 1 is for the quotation.

    I want to keep this two files separated , which Product.xlsx it keeps the current price (as it will have to update frequently) , Quotation.xlsx to do the quoation calculation and then it can send immediately to client. I do not want client to find my product net price.

    Is there any way i can handle this.

    Currently I have these 2 files in same workbook, and using xlookup to locate the price. After the calculation, i copy the quotation sheet and past "data" only to eliminate the formula, before i sent to client

    I think there may be a better way

    I do appreciate your help

    Eric

  2. #2
    Valued Forum Contributor
    Join Date
    03-24-2020
    Location
    Thailand
    MS-Off Ver
    Office 2021
    Posts
    968

    Re: Connect two workbooks

    Hi Eric,

    As you have your Prices and quotation templet in the same excel workbook at the moment, I think it is easiest to keep it that way.
    You can add a macro to save the quotation as a new file (values only) in either a new excel file or as a PDF file.

    See attached sample.

    Generate the quotation, selecting items, quantity....

    Click the button to either save the quote as an excel file or PDF file.

    There are some variables that can be updated as required;
    The name in value in cell "B5" (name) is used as part of the file name together with the current day's date.
    The files are saved in the same folder as the template is.

    Let us know if this works for you



    Sub SaveSheetInNewFile()
    
    Dim Path, fileName, qName As String
    
        Application.ScreenUpdating = False
        
        qName = ActiveSheet.Range("B5").Value
        Path = Application.ActiveWorkbook.Path
        fileName = Path & "\Quotation " & qName & " - " & Format(Date, "dd-mm-yyyy") & ".xlsx"
        
            Cells.Select
            Selection.Copy
            Workbooks.Add
            Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
                :=False, Transpose:=False
            Range("A1").Select
            Application.CutCopyMode = False
        
        ActiveWorkbook.SaveAs fileName
        ActiveWorkbook.Close
        
        Application.ScreenUpdating = True
        
        MsgBox "The sheet is saved as: " & vbNewLine & vbNewLine & _
        fileName, vbInformation, "File Saved"
    
    End Sub

    Sub SaveActiveSheetsAsPDF()
    
    Dim Path, fileName, qName As String
    
    qName = ActiveSheet.Range("B5").Value
    Path = Application.ActiveWorkbook.Path
    fileName = Path & "\Quotation " & qName & " - " & Format(Date, "dd-mm-yyyy") & ".pdf"
    
    ActiveSheet.ExportAsFixedFormat Type:=xlTypePDF, _
        fileName:=fileName
    
    MsgBox "The sheet is saved as: " & vbNewLine & vbNewLine & _
    fileName, vbInformation, "File Saved"
    
    End Sub
    Attached Files Attached Files
    If your Question is answered; please mark it SOLVED. If you are happy with a member's solution, say 'Thanks' and click the 'Star' to Add Reputation.

+ Reply to Thread

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. Connect of Workbooks
    By Eric Tsang in forum Excel Formulas & Functions
    Replies: 1
    Last Post: 10-21-2022, 10:41 AM
  2. Connect multiple workbooks
    By nits1982 in forum Excel General
    Replies: 0
    Last Post: 08-02-2017, 12:34 PM
  3. need 6 workbooks to connect an change value of a certian cell in each workbook
    By Jenkins27 in forum Excel Programming / VBA / Macros
    Replies: 6
    Last Post: 01-29-2015, 09:10 PM
  4. Replies: 6
    Last Post: 03-10-2014, 07:41 PM
  5. Connect 4 :)
    By Macdave_19 in forum Excel Programming / VBA / Macros
    Replies: 1
    Last Post: 04-09-2009, 09:32 AM
  6. [SOLVED] connect to sql
    By Andre in forum Excel Programming / VBA / Macros
    Replies: 9
    Last Post: 04-03-2006, 05:25 AM
  7. [SOLVED] connect to MS SQL
    By mk in forum Excel Programming / VBA / Macros
    Replies: 1
    Last Post: 04-03-2005, 04:06 PM

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