Using Office 365 Power Apps Version 3.20013.29
The code below performs the following:
vRequestRecords has the columns: "Title", "ItemType", "ItemName", "RequestType", "Revision", ….. and several others.
The function ShowColumns extracts 4 columns ("ItemType", "ItemName", "RequestType", "Revision") from vRequestRecords.
The function AddColumns then adds 1 column ("Title") to the result of ShowColumns.
Until Friday, January 31,2020, it worked without a problem.
Today, February 3, 2020, it shows the error messages listed.
It looks like a Power Apps bug introduced in a recent Office 365 update.
CODE:
AddColumns(ShowColumns(vRequestRecords, "ItemType", "ItemName", "RequestType", "Revision"),
"Title", ItemType.Value & ": " & ItemName.Value & " (" & RequestType.Value & ")" & " (" & Revision & ")"
)
ERROR MESSAGES:
A column named 'Title' already exists.
The function 'AddColumns' has some invalid arguments.