Hey @OmahaOmaha, to do that you need to pull the ID out of the typeahead field. A typehead contains 3 fields arrayed together - objcode, name, and ID.
You can use a Set Variable module to break this apart and provide the ID for use in the task assignment. So your Variable Name can be something like "Value of ID in Typeahead" with the following code put into the value field:
{{join(remove(map(toArray(<<TYPEAHEAD_FIELD_HERE>>); "ID"); null); "||")}}
Then use the output that variable to make your assignments.
If you like this answer, please mark it as correct! Have a great day!