![]() |
|
|
|
#1
|
||||
|
||||
|
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 |
|
#2
|
|||
|
|||
|
I tried using the code given, but I couldn't figure out how to use it.
But I have of thought of something but I do not know how to code it. Say I have Content Control Title: Price and Product, both Tags "Annual" (assuming these values changes every year and other tags don't) Maybe by using a event on exit I add a rich text cc TAG: Clear If I Select the field with the Clear Tag (On entry) then exit the field (On Exit) Tags with "Annual" would clear |
|
| Tags |
| clearcontents, content control, vba |
| Thread Tools | |
| Display Modes | |
|
|
Similar Threads
|
||||
| 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 |
Finding specific Content Control based on both title and tag
|
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 |
Code to Sum Column of Content Control Values In Specific Tables?
|
warbird | Word VBA | 2 | 07-13-2015 05:44 AM |