
Announcements
HI Folks -
I have a collection where I showColumns but I need to rename them since they are different across all 3 sources. I want to name each to "Alias".
Collect(
ListActParentList,
ShowColumns(RenameColumns(rdInvestments, "ProjectCode","Alias")
),
ShowColumns(rdTarget,"TargetID"
),
ShowColumns(rdPlatIntInfa,"Name"
)
),
What am I doing wrong? Thank you!
I got it, sorry for the bother!
ShowColumns(RenameColumns(rdInvestments, "ProjectCode","Name"),"Name"
),
ShowColumns(RenameColumns(rdTarget,"TargetID","Name"),"Name"
),
ShowColumns(rdPlatIntInfa,"Name"
)
),