Replacing Field Value from Another Field

Hello All,

I replaced the design of a mail file used as a forum/maillist for web users. I replaced it with a forum template. I have already created an agent to refresh the form so I can see the documents within the forum database.

Now, I am trying to take a field which only existed in the “Mail” form in the mail file (called “from”) and copy the information to the field “FromAuthor” in the forum form.

The forum form “Main Topic” does not have the “from” field in it. It only shows this field when I look at the document properties.

I have tried to use the formula SETField. Yet, that doesn’t work.

My question is how can I take the value in the “from” field and copy it into the “FromAuthor” field?

Thank you in advance :o).

Subject: Replacing Field Value from Another Field

FIELD FromAuthor:=from;

Subject: RE: Replacing Field Value from Another Field

Do I use the "FIELD FromAuthor := from in the SetField formula?

Thanks in advance :o).

Subject: Esther meant that in a similar way that you created an agent to change the Form field…

i.e. create an agent to run on all documents in the viewSELECT Form = “Memo”;

FIELD Form = “ForumForm”;

SELECT @IsAvailable(From)

FIELD FromAuthor := From;

FIEDL From := @DeleteField;

Subject: Thank you Esther!!!

Thank you Esther :o)