Consulting

Results 1 to 20 of 58

Thread: Automating some functions

Threaded View

Previous Post Previous Post   Next Post Next Post
  1. #1

    Automating some functions

    I have a spreadsheet that gets changed on a regular basis. It is saved with each change. I need to have certain Info from the spreadsheet to update an ongoing list on a spreadsheet (in a different workbook) used to track all info.

    Example:

    F1= Comapny name (needs to be updates into cell C# of tracking spreadsheet)
    C2 = Date of changes (needs to be updated into Cell D# of tracking spreadsheet) {BTW anyone know how to get the cell with the date of changes to autofill only on the day of the initial change?}

    The File name which is automated with the following Thread:


    Sub SvMe() 
    Dim path 
    Dim fname 
    path = ActiveSheet.Range("A1") 
    fname = ActiveWorkbook.Name 
    ActiveWorkbook.SaveAs path & "\" & fname 
    End Sub
    needs to auto enter into cell A# of tracking spreadsheet.

    Now there is a total in the K Column. The cell changes as to the number of Rows needed to calculate all the invoices. The Total needs to Update into cell B# of tracking spreadsheet.

    This is a big thing i am asking for but will save me an immense amount of time
    Last edited by Aussiebear; 04-29-2023 at 08:01 PM. Reason: Adjusted the code tags

Posting Permissions

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