![]() |
|
|
|
#1
|
|||
|
|||
|
I know that it cause of hidden symbols, I know that i can delete them manually, but maybe it's possible to delete them with macros. When i type, blank pages always appear after about 30 pages. So in document with about 300 pages i have plenty of them |
|
#2
|
||||
|
||||
|
Quote:
Here's a slightly different approach to clearing out trailing content in a document: Code:
Sub Demo()
With ActiveDocument.Characters.Last
While .Previous.Text Like "[ " & Chr(160) & vbCr & vbTab & Chr(12) & "]"
.Previous.Text = vbNullString
Wend
End With
End Sub
__________________
Cheers, Paul Edstein [Fmr MS MVP - Word] |
|
#3
|
|||
|
|||
|
I don't have any guess. Just in default. Office 2007.
|
|
| Thread Tools | |
| Display Modes | |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
deleting blank pages
|
thauser | Word | 3 | 05-27-2014 01:56 AM |
Deleting blank pages
|
Microsoftenquirer1000 | Word | 14 | 08-27-2012 01:24 PM |
| delete blank pages from mail merge document | blusea | Word | 0 | 12-17-2010 06:10 PM |
| How do you delete a blank page at end? | aerophil | Word | 4 | 10-24-2009 05:04 AM |
| hidden blank pages | mljm | Word | 3 | 06-19-2009 03:18 AM |