I am trying to create a collection based on a collection from a Sharepoint List. The SP list uses People columns, and I needed to pull the names out of the record format they are in for access. However, I would really like to stack the "Member Display" and "MemberAlternative" Columns. But with this code I am just getting in blanks. I thought this was processing it from Add Column, to Rename and finally Show Columns, but I must be missing something because I am getting nothing, and it doesn't seem to be Renaming my column just adding another one with the new name.
Clear Collect (
colPeopleCases,
Show Columns (
Rename Columns (
AddColumns(
colCases,
"CaseID",
ID,
"MemberDisplay",
MemberName.DisplayName,
"MemberAlternative",
Member,
"ContactDisplayName",
Contact.DisplayName,
"ReachCoordinatorDisplayName",
ReachCoordinator.DisplayName
),
"MemberDisplay",
"MemberDisplayName"
),
"CaseID",
"MemberDisplayName",
"MemberAlternative",
"ContactDisplayName",
"ReachCoordinatorDisplayName"
)
)
