Hi
I have 2 rich text field on the mail memo form. I need to concatenate the content of both the rich text fields in “Body” field on clicking send button.
I am trying it by using formula and not able to.
Plz suggest some formula
Thanks
Hi
I have 2 rich text field on the mail memo form. I need to concatenate the content of both the rich text fields in “Body” field on clicking send button.
I am trying it by using formula and not able to.
Plz suggest some formula
Thanks
Subject: Concatenation of rich text field using formulas
You can’t append two rich text fields using formula. You need to use LotusScript for that. Pls refer to “AppendRTItem” method in NotesrichTextItem class.
Subject: RE: Concatenation of rich text field using formulas
Well purpose of all this is, I have 2 rich text fields on Mail memo form 1. Body(RichText) 2. tBody(RichText). tBody have @dblookup formula which fetch some rich text value from document. After this I am trying to concatenate both the values in 1. Body(RichText) field.
I have used appendRTitem code which is given in designer help in PostSave event. When I open the mail memo form and when I enter some value after that when I click on Send button, it shows in debugger that it is contactenating the values in Body(RichText) field.
But after processing when I open the mail, then that concatenated value of tBody is not visible to me. Only value of Body is visible to me.
What should I do? Please suggest…