PRB: Using REPLACE to Concatenate Two Fields Doesn't WorkLast reviewed: June 27, 1995Article ID: Q110370 |
The information in this article applies to:
SYMPTOMSWhen you are attempting to concatenate two fields together in one field, the REPLACE command does not work correctly. For example, when you use the following REPLACE command
REPLACE <field1> WITH <field1> + <field2>and then browse the database after entering the above command, you will see no change in the data, although FoxPro indicated it made a number of replacements.
CAUSEThe field you are replacing is not large enough to accommodate the two fields including spaces.
RESOLUTIONTo achieve the desired results, trim field1 and field2. For example:
REPLACE <field1> WITH ALLTRIM(<field1>) + ALLTRIM(<field2>) |
Additional reference words: FoxMac FoxDos FoxWin 1.02 2.00 2.50 2.50a 2.50b
© 1998 Microsoft Corporation. All rights reserved. Terms of Use. |