I have it basically setup. See name properties output below.
The below is from the Modern Combo Box Properties:
DefaultSelectedItems = ThisItem.PermitOwner
Items = Choices(EnvironmentalPermits.PermitOwner)
The code for the DataCard Properties:
DataField = PermitOwner
DisplayName = DataSourceInfo(EnvironmentalPermits,DataSourceInfo.DisplayName,PermitOwner)
Update = DataCardValue26_1.Selected
None of the above worked.
I also tried various code from the internet as well. For example, using the below in the update of the data card
{
Claims: "i:0#.f|membership|" & Lower(ComboBoxName.Selected.Mail),
Department: "",
DisplayName: ComboBoxName.Selected.DisplayName,
Email: ComboBoxName.Selected.Mail,
JobTitle: "",
Picture: ""
}
See image below from the area of my Form in question
Lastly, I only want to pull the DisplayName from the user. Is this possible? I'm sure it is. I'm probably not adding something. Thanks in advance for your help!