![]() |
|
|
|
#1
|
||||
|
||||
|
Quote:
Quote:
Quote:
Whether you copy & paste the VBA code from the link I gave you (which doesn't require you to install anything) or you sit there and re-type it for yourself, you'll end up with the same thing. Regardless, the same VBA code demonstrates how you can retrieve content from a document to use in the naming of a part of that document.
__________________
Cheers, Paul Edstein [Fmr MS MVP - Word] |
|
#2
|
|||
|
|||
|
ok. got it. thanks a lot!
|
|
#3
|
|||
|
|||
|
Hi, again!
I've tried using the "Split Merged Output to Separate Documents" macro but it asks "How many Section breaks are there per record?", I write how many there are, press OK and nothing happens. I realized I should use the bellow code as i can use a delimiter to separate the Q&As, but still, I cannot save the documents with the text from inside it as name and it also changes the format style of the question, which initially was Heading1. Could you kindly help?? Thanks! Sub SplitNotes(delim As String, strFilename As String) Dim Doc As Document Dim arrNotes Dim i As Long Dim X As Long Dim Response As Integer arrNotes = Split(ActiveDocument.Range, delim) Response = MsgBox("This will split the document into " & UBound(arrNotes) + 1 & " sections.Do you wish to proceed?", 4) If Response = 7 Then Exit Sub For i = LBound(arrNotes) To UBound(arrNotes) If Trim(arrNotes(i)) <> "" Then X = X + 1 Set Doc = Documents.Add Doc.Range = arrNotes(i) Doc.SaveAs ThisDocument.Path & "\" & strFilename & Format(X, "000") Doc.Close True End If Next i End Sub Sub test() 'delimiter & filename SplitNotes "///", "Notes " End Sub |
|
| Tags |
| vba microsoft word 2013 |
| Thread Tools | |
| Display Modes | |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
Word VBA - Split Document By Headings - Save File Name As Heading Name
|
jc491 | Word VBA | 7 | 01-21-2022 11:04 AM |
split word document based on bookmarks with each new document title of the bookmark
|
megatronixs | Word VBA | 9 | 09-05-2020 02:29 PM |
| Vba code to save document as pdf using document property text and rename folder. | staicumihai | Word VBA | 1 | 12-21-2015 07:39 AM |
| How to save active document to SharePoint document library | Rose roon | Word VBA | 9 | 09-22-2015 10:53 PM |
How do I see one document map for each half of a split MS WORD 2010 document?
|
quickwin | Word | 3 | 07-09-2013 10:20 PM |