Page 1 of 1

On computer 'on' return forehead to table. Repeat.

Posted: Fri Aug 24, 2007 6:43 am
by dalkin
I want to replace the contents of Field A with EITHER the contents of Field B OR random words from a comma-separated list (hopefully from a text file), with the user making the choice which to use.

I've spent 3 hours trying to make it work but I can't. Any help appreciated.

Cheers,

Posted: Fri Aug 24, 2007 8:48 am
by Klaus
Hi dalkin,

please have your aspirine handy ;-)

...
answer "Replace with complete field B or any word from list?" with "Field B" or "Word form list"
if it = "Field B" then
put fld "B" into fld "A"
else
put any item of your_list_here into fld "A"
end if
...


Best

Klaus