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="https://www.yourwebsite.com/page-a";
if(fieldname1 == 'B') document.location.href="https://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.