What is wrong with this formula? The error I'm getting is on the rename columns step stating that "a column named field_6 already exists". But I'm literally dropping the field_6 column in the previous step. Does drop columns simply not work? This should be taking the email addresses in field_6, making them insensitive by running them through the Lower function and saving them to a new field, then drop the original field_6 and rename the new field to field_6. When I view the collects created at these various steps, those columns do not appear in the collections. This code worked fine six months ago.
ClearCollect(formattedcolSecurityAll,
RenameColumns(
DropColumns(
AddColumns(
colSecurityAll
,insensitivefield_6,Lower(field_6))
,field_6)
,insensitivefield_6,field_6));