Create HTML+Deluge Script button in a Formula field???

Create HTML+Deluge Script button in a Formula field???

A Zoho Creator developer recommended that I add a Formula field to my form that contains the following HTML+Deluge script in order to create a 'View Details' button.
   
  1.  (("<a style='white-space:nowrap;background:#3A5999;border:1px solid #4165C5;color:#ffffff' href=\"#View:Detailed_View?MOB_idstr=") + MOBID) + "\">View Details</a>"
What the code produces is seen below. Since this is put in a formula field it is displayed on any of the views in which I choose to view this field. The Deluge script pulls the users current 'MOBID', a unique ID we created, and then sends the user to a Zoho Creator view requesting that the specific 'MOBID' is the variable from which the view is populated.


So here is the scenario:
I have a field in my form that stores a URL value. I want to create a combination HTML+Deluge script button (like above) that is stored in a Formula field on the same form. This formula field would simply be a A HREF that links to the value of the Edit_Link field. Then I could add this column to a view and my users could quickly click directly to the URL associated with the record.

Does that make sense?  Could someone help?