PDA

View Full Version : Word 2003 Track Changes



senthilkumar
12-10-2009, 10:14 PM
Dear All,

Herewith I have attached sample word document which containing the find text expression with replace text. The document also contains the sample input and output. Expecting your help.

Thanks,
Senthil. S :banghead:

geekgirlau
12-10-2009, 11:23 PM
What have you attempted so far? Please post any existing code.

macropod
12-11-2009, 12:30 AM
Hi Sentil,

Is there a reason you can't use:
Find - Figure ([0-9]{1,}.[0-9])
Replace - \1 figure
I realise it doesn't put the position the individual changes quite where you suggested ('Figure 10.1 10.1figure'), but the final effect is much the same ('Figure 10.1' replaced with '10.1 figure', as in '10.1 Figure 10.1figure').

senthilkumar
12-11-2009, 05:43 AM
Dear Macropod,

Thanks for your reply. I want to use the find and replace statement in track change enabled document. While doing so, I am not getting the expected result.

Thanks,
Senthil. S

macropod
12-11-2009, 05:55 AM
Hi Senthil,

Do you have 'use wildcards' checked?

senthilkumar
12-11-2009, 06:02 AM
Hi Macropod,

Yes, I have checked the wildcards option.

Thanks,
Senthil. S

senthilkumar
12-11-2009, 06:03 AM
Dear Macropod,

In my word doc, there are two parts. The first one is "Text before Find and Replace:" and the second is "Text after Find and Replace:". The first one is the input and second one is the result what we have got after doing the find and replace using the "Find Text Expression:" and "Replace Text Expression:". While doing the Find and Replace dont forget to on the wildcard option.

Thanks,
Senthil. S

TonyJollans
12-11-2009, 06:07 AM
There is a bug using \n in Replace patterns in Word 2003 when Track Changes is enabled. There is no simple workaround if you want the changes tracked.

senthilkumar
12-11-2009, 06:12 AM
Hi Tonyjollans,

Thanks for your reply. Is there anyother way to do the find and replace by enabling track change on?

Thanks,
Senthil.

TonyJollans
12-11-2009, 06:24 AM
No, not really, sorry. What is the actual change you want to make?

senthilkumar
12-11-2009, 06:27 AM
Dear Tony,

I want do some automation in word documents using word VBA. While doing so, I will disable the track change options before doing all my process. But, the user needs to want to do the automation with track change option enabled. So that the document will be easily reviewed for the changes.

Thanks,
Senthil. S

TonyJollans
12-11-2009, 06:51 AM
If you're working in VBA it might be possible to build up the replacement string in code rather than relying on F&R patterns - it depends how complex it is

macropod
12-12-2009, 05:02 AM
Hi folks,

My testing was with Word 2000, which apparently explains why F/R worked for me but not with Sentil's Word 2003 ...