Microsoft Office Forums

Go Back   Microsoft Office Forums > >

 
 
Thread Tools Display Modes
Prev Previous Post   Next Post Next
  #1  
Old 02-03-2018, 04:34 AM
KvT Zdam KvT Zdam is offline "Index" all the items and delete in one go Windows 10 "Index" all the items and delete in one go Office 2016
Novice
"Index" all the items and delete in one go
 
Join Date: Feb 2018
Posts: 2
KvT Zdam is on a distinguished road
Default "Index" all the items and delete in one go

Hi,


(I changed the topic title to better subscribe the post)

A while back you guys helped me design a nice script to write Excel tables to Word . We're now making 200 page rapports in seconds!!! It works by looking for word Bookmarks and then looking for corresponding named ranges.

A few tables don't get exported if the're not filled or when they're not selected. In sort:

Code:
  
If .Bookmarks.Exists(strBkMk) Then    
    Set wdRng = .Bookmarks(strBkMk).Range
    wdRng.Paste
With Macropod's code i managed to delete the page if no table was exported.

Quote:
Originally Posted by macropod View Post
That's about it, though you don't need to use Selection:
Code:
Dim Rng As Range, iPage As Long
iPage = 2
With ActiveDocument
  Set Rng = .GoTo(What:=wdGoToPage, Name:=iPage)
  Set Rng = Rng.GoTo(What:=wdGoToBookmark, Name:="\page")
  Rng.Delete
End With
A few modifications;
Code:
sub DelBm(strBkMn)
 Dim Rng As Range
   Set Rng = .GoTo(What:=wdGoToPage, Name:=strBkMn)
   Set Rng = Rng.GoTo(What:=wdGoToBookmark, Name:="\page")
     Rng.Delete
A lot of times it completely mashes up the format and layout because there is stuff left behind when a page is deleted. Selection End doubles and a page turn 90 degrees. Bank pages are left behind and so on. Chapter number get left out or become 1.1.3 instead if 1.2.

I was thinking about making a script to identify everything on the page. Storing in a variant or array and then setting the range to everything. I think the Rng.Delete should work then. But I'm wondering if there is a better approach.

Thanks for a the great insights so far!

Koen

Last edited by KvT Zdam; 02-03-2018 at 11:21 AM.
Reply With Quote
 

Tags
delete a page, index



Similar Threads
Thread Thread Starter Forum Replies Last Post
"Index" all the items and delete in one go Deleting Undeletable text boxes pasted in from web pages TAfromKC Word 4 05-08-2017 04:53 PM
Can we define macros in a way to not misworking after deleting, renaming or moving the source file? tesoke Excel Programming 10 11-13-2015 09:30 AM
"Index" all the items and delete in one go deleting blank pages thauser Word 3 05-27-2014 01:56 AM
"Index" all the items and delete in one go deleting pages paul_pearson Word 4 03-22-2013 12:18 AM
"Index" all the items and delete in one go Deleting blank pages Microsoftenquirer1000 Word 14 08-27-2012 01:24 PM

Other Forums: Access Forums

All times are GMT -7. The time now is 05:50 PM.


Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2025, vBulletin Solutions Inc.
Search Engine Optimisation provided by DragonByte SEO (Lite) - vBulletin Mods & Addons Copyright © 2025 DragonByte Technologies Ltd.
MSOfficeForums.com is not affiliated with Microsoft