Hi Members,
I have a requirement in Power Apps Combo box concatenate display fields
I have a SharePoint list [IT Service Request], that has a choice column as Issue with the below choices:
- Outlook
- Laptop
- Network
- Other

Now On my Power Apps screen, there is an Edit form. In the form, there is a combo box control connected to the above SharePoint list choice column.
Whenever the user selects an Other option, there will be a Text-input control visible

When the user provides a text and clicks on the submit button.
The combo box selected value and text input value should be saved in the SharePoint list choice column. So it should concatenate both control values.
So on the Update property, I tried the code below:
Concat(ForAll(DataCardValue3.Selected.Value, Value & If(Value="Other" && Not(IsBlank(TextInput2.Text)), ": "&TextInput2.Text, "")),Value, ", ")
But I was facing an Error for this.
Can anyone please suggest how I can resolve this? Thanks in advance!