Solved
Forum Discussion
MarkShnier__You
Qrew Legend
3 days agoYes you can make a URL formula button to do that.
not tested for syntax errors but try this
var text DeSelectCustomer = URLRoot() & "db/" & dbid() & "?act=API_EditRecord&rid=" & [Record ID#]
& "&_fid_99=" // replace the 99 with the fid of the [related customer]
var text ReSelectCustomer = URLRoot() & "db/" & dbid() & "?act=API_EditRecord&rid=" & [Record ID#]
& "&_fid_99=" & [Related Customer]
var text RefreshPage = URLRoot() & "db/" & Dbid() & "?a=doredirect&z=" & Rurl();
$DeSelectCustomer
& "&rdr=" & URLEncode($ReSelectCustomer)
& URLEncode("&rdr=" & URLEncode($RefreshPage))
EmberKrumwied
3 days agoQrew Officer
Thanks Mark. I decided to go with a editable text field that gets populated when the record is created, but then is editable on the fly.