+ Reply to Thread
Results 1 to 37 of 37

Transfer Data From Workbook To Workbook

Hybrid View

  1. #1
    Forum Contributor
    Join Date
    08-22-2008
    Location
    S-o-t
    MS-Off Ver
    Office 2000 & 2010
    Posts
    166

    Transfer Data From Workbook To Workbook

    Hi

    Thanks to everyone that has helped in the past.

    I'm after some Vb Code for windows97 That will Export Data from one Workbook to another.

    Please find attached both workbooks. Both workbooks will always be in the same folder.

    I have a Rota sheet that i update weekly, once completed i need to export the data to the Master Rota workbook.

    I need it to find the Staff Id Number then find the correct Date and import the Data in the correct cells.

    A simple Copy and Paste is not an option with the master rota sheet

    Cheers Dave
    Attached Files Attached Files
    Last edited by Dave69rock; 11-21-2008 at 06:45 PM. Reason: my mistake!

  2. #2
    Forum Expert
    Join Date
    01-15-2007
    Location
    Brisbane, Australia
    MS-Off Ver
    2007
    Posts
    6,591
    Hi

    See if this gets you started. It doesn't close down the output workbook at this stage as I want you to make sure it copies things across properly.

    Sub ExportIt()
      Workbooks.Open (ThisWorkbook.Path & "\master rota.xls")
      Set outsh = Sheets(ThisWorkbook.Sheets("rota").Range("A4").Value)
      
      ThisWorkbook.Activate
      For Each ce In Range("F6:F" & Cells(Rows.Count, "F").End(xlUp).Row)
        Set findit = outsh.Range("F:F").Find(what:=ce.Value)
        For j = 7 To Cells(2, Columns.Count).End(xlToLeft).Column
          outcol = Evaluate("=match(" & Format(CDate(Cells(2, j)), 0) & ",2:2,0)")
          outsh.Cells(findit.Row, outcol).Value = Cells(ce.Row, j).Value
        Next j
      Next ce
      
    End Sub

    rylo

  3. #3
    Forum Contributor
    Join Date
    08-22-2008
    Location
    S-o-t
    MS-Off Ver
    Office 2000 & 2010
    Posts
    166
    Hi Rylo

    This is looking like what i need.

    At the moment it only copies the data into the first week of the Master rota If i change the dates of the rota sheet it doesn't match the dates and copy underneath.

    In the rota sheet i will be using under cell F50 will have hundreds of rows of formula, so using endup will this cause problems

    Dave

  4. #4
    Forum Expert
    Join Date
    01-15-2007
    Location
    Brisbane, Australia
    MS-Off Ver
    2007
    Posts
    6,591
    Dave

    Silly me - forgot to find things in the right sheet.

    try this

    Sub ExportIt()
      Workbooks.Open (ThisWorkbook.Path & "\master rota.xls")
      Set outsh = Sheets(ThisWorkbook.Sheets("rota").Range("A4").Value)
      
      ThisWorkbook.Activate
      For Each ce In Range("F6:F" & Cells(Rows.Count, "F").End(xlUp).Row)
        Set findit = outsh.Range("F:F").Find(what:=ce.Value)
        For j = 7 To Cells(2, Columns.Count).End(xlToLeft).Column
          outcol = Evaluate("=match(" & Format(CDate(Cells(2, j)), 0) & ",'[master rota.xls]" & outsh.Name & "'!2:2,0)")
          outsh.Cells(findit.Row, outcol).Value = Cells(ce.Row, j).Value
        Next j
      Next ce
      
    End Sub
    rylo

  5. #5
    Forum Contributor
    Join Date
    08-22-2008
    Location
    S-o-t
    MS-Off Ver
    Office 2000 & 2010
    Posts
    166
    Hi

    This is looking great will need to run some more test but so far i'm having no problems.

    Dave

  6. #6
    Forum Contributor
    Join Date
    08-22-2008
    Location
    S-o-t
    MS-Off Ver
    Office 2000 & 2010
    Posts
    166
    Thanks for your help so Far

    Because i have Data under Row F50 on the rota sheet(not the example sheet i posted) i keep getting an error its todo with the End up statement but i'm not sure how to set the range.

    Dave

  7. #7
    Forum Contributor
    Join Date
    08-22-2008
    Location
    S-o-t
    MS-Off Ver
    Office 2000 & 2010
    Posts
    166
    Hi Rylo
    i'm having some problems with the code you did for me.

    When i run the code at work on windows97 i'm getting and error and the Dates in the master rota that it matches are deleted. it does however copy all the times to the correct cells.

    you also said that if the dates in the master rota were numeric, then it wouldn't be too hard to enhance the code to do the conversion before processing.

    The format of the date cells in master are set as general.

    Can you still help please

    Dave

  8. #8
    Forum Expert
    Join Date
    01-15-2007
    Location
    Brisbane, Australia
    MS-Off Ver
    2007
    Posts
    6,591
    Dave

    In your macro, once you have opened rota.xls and moved to the sheet rota then insert this code

    Range("H2", Cells(2, Columns.Count).End(xlToLeft)).NumberFormat = "general"
      For Each ce In Range("H2", Cells(2, Columns.Count).End(xlToLeft))
        ce.Value = ce.Value * 1
      Next ce
    It will format the cells to general, and convert to numeric.

    rylo

  9. #9
    Forum Contributor
    Join Date
    08-22-2008
    Location
    S-o-t
    MS-Off Ver
    Office 2000 & 2010
    Posts
    166
    Hi Rylo

    At the moment i have both sheets set as general and it all works ok i will insert this code after i have sorted the problem below out.

    When i run this code on my pc which runs on windows 2000 all is fine, however
    when i run it at work which runs on windows97 i get an error and it highlights the code I've put in red. and also deletes the dates from the master rota sheet. i think the dates are deleted because the macro hasn't completed its task

    Sub ExportIt()
      Workbooks.Open (ThisWorkbook.Path & "\master rota.xls")
      Set outsh = Sheets(ThisWorkbook.Sheets("rota").Range("B4").Value)
      
      ThisWorkbook.Activate
      For Each ce In Range("G6:G50")
        If Not IsEmpty(ce) Then
          Set findit = outsh.Range("G:G").Find(what:=ce.Value)
          For j = 8 To Cells(2, Columns.Count).End(xlToLeft).Column
            outcol = Evaluate("=SUMPRODUCT(('[Master Rota.xls]" & outsh.Name & "'!$2:$2=" & Cells(2, j).Address & ")*('[Master Rota.xls]" & outsh.Name & "'!$3:$3=" & Cells(3, j).Address & ")*COLUMN('[Master Rota.xls]" & outsh.Name & "'!$2:$2))")
            outsh.Cells(findit.Row, outcol).Value = Cells(ce.Row, j).Value
          Next j
        End If
      Next ce
    End Sub

    Any idea's
    Dave
    Last edited by Dave69rock; 11-16-2008 at 02:50 AM.

  10. #10
    Forum Contributor
    Join Date
    08-22-2008
    Location
    S-o-t
    MS-Off Ver
    Office 2000 & 2010
    Posts
    166
    I found this about using Evaluate in windows97

    http://support.microsoft.com/kb/168238

  11. #11
    Forum Expert
    Join Date
    01-15-2007
    Location
    Brisbane, Australia
    MS-Off Ver
    2007
    Posts
    6,591
    Hi

    Try converting the formula to be valid in the spreadsheet, then put it into a cell somewhere that is not going to impact things.

    You can then get the result of the formula, and put it to the variable outcol. I'm guessing that is where the problem lies. Once you have the result in the variable, you can delete the formula from the cell.

    See how that goes. If it works, then it should be valid for both versions.


    rylo

+ 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