Find/replace

  • Thread starter Thread starter cjborntorun
  • Start date Start date
C

cjborntorun

Is it possible to find/replace on report controls? For example, I would
like to replace every "2010" with a "2011".
 
Actually you shouldn't have "2010" hard-coded into your designs. Ideally
these numbers and other "constants" should be stored in your data so you
maintain data and not designs.

There are third party Find And Replace tools available if you just google
for them.
 
Instead of replacing why not set it for automatic by using Year(Date()) to
do it for you?
 
Back
Top