How to synchronize two files with each other

PerretteQ Posted messages 28 Status Member -  
PHILOU10120 Posted messages 6463 Registration date   Status Contributor Last intervention   -
Hello,

I would like to make it so that when I make changes in a first file, those changes appear in a second file, where the first three columns are identical starting from line 7 (frozen pane for the header of my table).
I have already tried pasting with a link or even some attempts with VBA.
My problem is the following: It often happens that lines are added to the first table, and I would like them to automatically be added to my second table.
Do I need to check something specific in the paste special or is there a code for VBA?

Thank you in advance :)

8 answers

  1. PHILOU10120 Posted messages 6463 Registration date   Status Contributor Last intervention   835
     
    Hello

    You can use the following formula in workbook 2 in columns A, B, C.
    example column A

    =IF([Workbook1]Sheet1!$A$8<>"",[Workbook1]Sheet1!$A$8,"")

    Remember to change the names of the workbooks and extend the formula for the same number of rows as in workbook 1, the source workbook

    --
    Practice makes perfect. - It's when you hit a wall that you see the bricklayer - you always learn from your mistakes.
    1
    1. PerretteQ Posted messages 28 Status Member
       
      Thanks Phil, I'll try right away, just a small clarification: The first workbook in your formula corresponds to the 2 in my case and the 2nd workbook then corresponds to the first one?
      I would understand if you tell me that I'm not very clear :)
      0