ID | Title | Project | PM, | Assistant | New Column |
3 | Variable | 1 | joe | steve | Joe; Steve |
3 | Variable | 2 | steve | joe | Joe; Steve |
3 | Variable | 3 | Joe | Joe; Steve |
ClearCollect(
GroupedProject,
AddColumns(
GroupBy(
Projects,
ID,
PMAssistantTable
),
PMAssistant,
Concat(
Filter(
Distinct(
Split(
Concat(
ThisRecord.PMAssistantTable,
Lower(PM) & "," & Lower(Assistant) & ","
),
","
),
Value
),
Value <> ""
),
Value,
","
)
)
)
Stay up to date on forum activity by subscribing. You can also customize your in-app and email Notification settings across all subscriptions.