Hi Bruce
Sorry, my question was incomplete, I did see that field and it was off,
so I assumed it was linked to the auto complete lookup as it was not working.
Checking it again and I also inspected the HTML as per attached pic,
the option is unchecked,
the HTML confirms autocomplete="off"
I pasted the HTML for the input field into the w3schools example as per below.
Something weird happening and I can't seem to find the issue.
HTML seems broken and throwing away the autocomplete=off for all the fields.
Just removing the "e" in name="cliemail" fixes it.
Still not sure why
typing the name into of the existing fields works,
only when pasting generated NTWS HTML does it seem to break
Johan
https://www.w3schools.com/howto/tryit.asp?filename=tryhow_html_autocomplete_off<!DOCTYPE html>
<html>
<body>
<h2>Autocomplete on/off</h2>
<form action="/action_page.php">
<input type="text" name="fname" autocomplete="off"><br>
<input type="text" name="lname" autocomplete="off"><br>
<input type="text" name="cliemail" autocomplete="off"><br>
<input type="submit">
</form>
<p>Fill in and submit the form, then reload the page to see how autocomplete works.</p>
<p>Notice that autocomplete is "on" for the last name field, but "off" for the first name field.</p>
</body>
</html>