![]() |
#2
|
||||
|
||||
![]()
I would use a consistent Tag value in each CC that needs to be wiped by the macro. For example, set the Tag property to "Annual" for the plain text CCs you want to wipe.
The macro that then wipes those ones (at its simplest) would be Code:
Sub DeciduousCCs() Dim aCC As ContentControl For Each aCC In ActiveDocument.SelectContentControlsByTag("Annual") aCC.Range.Text = "" Next aCC End Sub
__________________
Andrew Lockton Chrysalis Design, Melbourne Australia |
Tags |
clearcontents, content control, vba |
Thread Tools | |
Display Modes | |
|
![]() |
||||
Thread | Thread Starter | Forum | Replies | Last Post |
Help to get a word document to send specific content via email using submit button | ActualJax | Word VBA | 2 | 07-06-2020 04:18 PM |
![]() |
ZaSpai | Word VBA | 4 | 03-31-2019 11:37 AM |
Adding Row with Content control using Command Button | baes10 | Word VBA | 0 | 12-13-2017 11:30 AM |
Content Control Option Button Oops | warbird | Word VBA | 5 | 12-07-2017 06:53 AM |
![]() |
warbird | Word VBA | 2 | 07-13-2015 05:44 AM |