Reply
 
Thread Tools Display Modes
  #1   Report Post  
Posted to microsoft.public.word.docmanagement
cc cc is offline
external usenet poster
 
Posts: 1
Default export to multiple html files

Hi,

Is there anyway to export a word document into multiple html
documents. I'd like the output document to be cut at a certain heading
level. I.e each heading2 becomes the beginning of a new output file.

thanks,

  #2   Report Post  
Posted to microsoft.public.word.docmanagement
Doug Robbins - Word MVP Doug Robbins - Word MVP is offline
external usenet poster
 
Posts: 8,832
Default export to multiple html files

The following code in a macro should do it:

Dim i As Long
Dim asection As Range
Dim newdoc As Document
With ActiveDocument
For i = .Paragraphs.Count To 1 Step -1
If .Paragraphs(i).Style = "Heading 2" Then
Set asection = .Paragraphs(i).Range
asection.End = .Range.End
Set newdoc = Documents.Add
newdoc.Range.FormattedText = asection.FormattedText
newdoc.SaveAs FileName:="Section" & i, FileFormat:=wdFormatHTML
newdoc.Close
asection.Delete
End If
Next
End With


--
Hope this helps.

Please reply to the newsgroup unless you wish to avail yourself of my
services on a paid consulting basis.

Doug Robbins - Word MVP

"cc" wrote in message
ups.com...
Hi,

Is there anyway to export a word document into multiple html
documents. I'd like the output document to be cut at a certain heading
level. I.e each heading2 becomes the beginning of a new output file.

thanks,



Reply
Thread Tools
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
How do I export to HTML in Word 2007? Jacob H. Microsoft Word Help 1 February 14th 07 10:47 AM
Saving multiple files as html Becky Microsoft Word Help 1 April 29th 06 08:14 PM
Document map + html export ??? OMNI Microsoft Word Help 2 November 15th 05 03:26 PM
Works Calendar Export to Word HTML Link Page Layout 0 September 7th 05 01:19 AM
How do I export Japanese to HTML in Unicode Hex format? Alivox Microsoft Word Help 1 December 14th 04 11:18 PM


All times are GMT +1. The time now is 09:06 PM.

Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 Microsoft Office Word Forum - WordBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Word"