Share via

Import reference list?

Anonymous
2013-02-21T05:42:01+00:00

I have been using MS (office) Word 2010 for a few years now and have built a large reference list.  I just bought MS Word (Office) 2013 and wonder (hope!) I can somehow import all my references into the new program. Thanks for any advice.

Microsoft 365 and Office | Word | For home | Windows

Locked Question. This question was migrated from the Microsoft Support Community. You can vote on whether it's helpful, but you can't add comments or replies or follow the question.

0 comments No comments

5 answers

Sort by: Most helpful
  1. Paul Edstein 82,861 Reputation points Volunteer Moderator
    2013-02-26T06:14:22+00:00

    Hope I don't sound too dumb but what do I do with the above data? I'm not much into programming so it looks Greek to me. Thanks so much for your time!

    For instructions on the installation & running of macros, see: http://www.gmayor.com/installing_macro.htm

    You don't actually need to 'do' anything with the output, which goes into whatever document is active when the SourcesExport macro is run. All that is needed after that is to use the SourcesImport macro to reimport the data onto either the same or another PC, as the need arises. Re-running the SourcesExport macro wipes the previous output and refreshes it with the curent set of bibliography data.

    Was this answer helpful?

    1 person found this answer helpful.
    0 comments No comments
  2. Anonymous
    2013-02-26T04:46:38+00:00

    Hope I don't sound too dumb but what do I do with the above data? I'm not much into programming so it looks Greek to me. Thanks so much for your time!

    Was this answer helpful?

    1 person found this answer helpful.
    0 comments No comments
  3. Anonymous
    2013-02-21T21:05:59+00:00

    Was this answer helpful?

    1 person found this answer helpful.
    0 comments No comments
  4. Anonymous
    2013-02-26T04:54:20+00:00

    Thank You!

    Was this answer helpful?

    0 comments No comments
  5. Paul Edstein 82,861 Reputation points Volunteer Moderator
    2013-02-22T05:50:16+00:00

    FWIW, I use a couple of macros to export all citation/bibliography entries to a document for backup, and for re-importing if necessary:

    Sub SourcesExport()

    Dim oSrc As Source, StrSrc As String

    With ActiveDocument

      .Range.Text = vbNullString

      For Each oSrc In Application.Bibliography.Sources

        StrSrc = StrSrc & vbCr & oSrc.XML

      Next

      .Range.InsertAfter StrSrc

      .Paragraphs.First.Range.Delete

    End With

    End Sub

    Sub SourcesImport()

    Dim i As Long

    'In case the source is already present

    On Error Resume Next

    With ActiveDocument

      For i = 0 To UBound(Split(.Range.Text, vbCr))

        Application.Bibliography.Sources.Add Split(.Range.Text, vbCr)(i)

      Next

    End With

    End Sub

    Simple and effective for both backup & restoration and for replication across multiple PCs.

    Was this answer helpful?

    0 comments No comments