Hi All,
Ok I have spent like 4 hours trying to figure this out but i am already at a loss. Let me describe what i want to do:
DataSource: Sharepoint List (RosterLevel) - stores a selected group of people from a people picker

combobox: Items: Office365Users.SearchUser({searchTerm:Peoplepicker2.SearchText}) (there are 4 similar peoplepickers and textinputs because there are a total of 4 leads
I want the text input to pick the current information of Lead1 on load (or on visible?) because i need to send an email ONLY to those people who were recently added as a lead. So on a usual scenario, only 1 Lead is added and so he's the only one who will receive an email, the others who were not changed will not receive an email
Here is what i have tried so far:
* Set a global variable to hold current Lead information based off a DataCardValue
Set(currentLead1, dcvLead1); Set(currentLead1Email, dcvLead1Email);
* Default value for TextInput_lead: currentlead1.text. This is able to pull the dcvLead1 value with no issues
* Now I am trying to modify the value of the above variables by using the formula below via OnSelect/OnChange:
currentLead1.Text = Peoplepicker1.Selected.DisplayName;
I was expecting that this will throw the value of the peoplepicker to the currentlead1 variable and the TextInput will also change but nothing is happening. How do I throw the selected value from the people picker down to the TextInput?
Again this is important because i have an If condition that checks whether the current entry was changed for LeadName and LeadEmail, as i only need to send an email to those who are going to be recently added.
Thanks in advance.