I have a form which pulls data from a CDS entity. Within that form, one Card pulls data from a lookup field, and as such was created (by default) as a ComboBox. Unfortunately this field draws from an entity which has names split into first and last.
I would like to populate the ComboBox with both first and last within its dropdown? Is there a way to do this?
At present the DisplayFields contains: ["cr6a2_firstname"]
And the SearchFields contains: ["cr6a2_firstname"]
I have tried ["cr6a2_firstname" & " " & "cr6a2_lastname"], but the syntax is wrong & I'm not sure how to correct it.