home *** CD-ROM | disk | FTP | other *** search
/ Shareware 1 2 the Maxx / sw_1.zip / sw_1 / TEXT / TM12_TIP.ZIP / 527.TXT < prev    next >
Text File  |  1991-12-18  |  839b  |  20 lines

  1. Q: I just imported a list and there is nothing in the "Dear" field.
  2.    How can I take just the first name of each contact and place it into
  3.    the Dear field?
  4.  
  5. A. You can do this with a replace of filtered records. First, use a filter
  6.    to select just those records you would like changed (000 for all
  7.    records) then from the "Replace in filtered records" option of the
  8.    "Database Utilities":
  9.  
  10.    Replace this field: US7                           ; "Dear" field
  11.    To look like this : &SUBS(CON,1,(AT(" ",CON)-1))  ; 1st name of CON
  12.  
  13.    This command takes the first word from the CONtact field and copies it
  14.    into the US7 field.  If you use another field for your DEAR field, 
  15.    please substitute the correct TeleMagic field name like US3 or US5.
  16.  
  17.    END 527
  18.    02/22/91  DRM
  19.    indexed on: dear/replace/import
  20.