Hi @mfigliulo ,
What do you have in the Items property of the Job Title dropdown?
Are you using the Text Input for anything other than checking if the job title selected from the Job Title Dropdown is the same as the job title selected from the "Clone as" People Picker?
If not, on the OnChange property of the "Clone as" People Picker, try adding:
If(
!(Self.Selected.JobTitle = DropdownJobTitle.Selected.Value),
Notify(
"Titles don't match",
NotificationType.Information
)
)
If the Job Title dropdown is also a People Picker, you can replace "DropdownJobTitle.Selected.Value" with DropdownJobTitle.Selected.JobTitle.
------------------------------------------------------------------------------------------------------------------------------
If I have answered your question, please mark your post as Solved. Remember, you can accept more than one post as a solution.
If you like my response, please give it a Thumbs Up.
Imran-Ami Khan