Hello @emolotel
Yes of course, you can use the HTML code you prefer, for example:
<a href="https://cff.dwbooster.com">Calculated Fields Form</a>
Best regards.
and via a radio button selection is it possible if you select an option to link a web page?
Hello @emolotel
You can insert a calculated field, and depending on the value selected in the radio button, redirect the user to a page or another.
For example, assuming the radio button field is: fieldname1 and it has two options: A and B
In this case you can insert a calculated field in the form to be used as auxiliary (you can tick the checkbox in its settings for hiding the field), with an equation similar to:
(function(){
if(fieldname1 == 'A') document.location.href="http://www.yourwebsite.com/page-a";
if(fieldname1 == 'B') document.location.href="http://www.yourwebsite.com/page-b";
})()
and that’s all.
If you need additional help implementing your project, you should contact us through our private website: Contact Us
Best regards.