Creating a Formula Rich Text Field
Good afternoon,
I am trying to create a button that will save a record then put me back into edit mode then copy information from one field into another. I have done research on this and found two separate solutions. I have the rich text formula for the save and conintue button below:
var text RID = If([Mission ID#]>0, ToText([Mission ID#]), "%%rid%%");
var text URL = URLRoot() & "db/" & Dbid() & "?a=er"
& "&rid="& $RID;
"<a class='SaveBeforeNavigating' data-replaceRid=true style=\"text-decoration:none; background: #117a39; border-radius: 5px; color: #FFFFFF; display: inline-block; padding: 4px 4px 4px 4px; width:140px; text-align: center; text-shadow: none; border: 2px solid #0863f5; font-size: 12px \"href='"
& $URL
& "'>Save and Continue</a>"
Then on my own I created the formula url button below:
var text LINKMISSION = URLRoot() & "db/" & Dbid() & "?act=API_EditRecord&rid=" & [Mission ID#] & "&_fid_153=" & [Mission ID#] &"&apptoken=bvtrs6mvpga7tb9z7ud6b99nvrn";
var text TOTABLES = URLRoot() & "db/" & Dbid() & "?a=er&rid=" & [Mission ID#];
$LINKMISSION
& "&rdr=" & URLEncode($TOTABLES)
Now I need to add them together! This is where I do not have the knowledge to do so.
Thanks in advance for your help!
------------------------------
Bailey Desormeaux
------------------------------