Automatically copying that text to another textbox use jQuery with Nintex Forms
you can achieve this using JavaScript/jQuery code within Nintex Forms. Here's a basic example of how you might do it:
// Assuming you have two textboxes with ids 'Name_textbox1' and 'Name_textbox2'
// Replace 'Name_textbox1' and 'Name_textbox2' with the actual ids of your textboxes
$(document).ready(function(){ $('#Name_textbox1').change(function(){
var text = $(this).val(); // Get the value of Name_textbox1
$('#Name_textbox2').val(text); // Set the value of Name_textbox2 to the value of Name_textbox1
}); });