
Announcements
I am trying to concatenate two column values(1- Associate: First Name and 2-Associate: Title) from my sharepoint list (Appointments) to display the value in a Gallery column named Customer Name. How can i achieve that? I am using this code/logic rn in the Text property:
ThisItem.'Associate: First Name'.Value & " " & 'Associate: Title'.Value
You have to add ThisItem to the title also!
ThisItem.'Associate: First Name'.Value & " " & ThisItem.'Associate: Title'.Value
If you have text-columns in SharePoint just remove the .Value
ThisItem.'Associate: First Name' & " " & ThisItem.'Associate: Title'