Hi so I have a couple galleries (Seen Below) and I was wondering if it was possible to use ShowColumns and RenameColumns within the same Clear collect. I am just trying to see if I can cut down on the amount of collections built of the same data.
ClearCollect(
galCollect,
ShowColumns(hidden_all_your_taskers_gallery.AllItems,"Title","Users_That_Submitted","Status")
);
and
ClearCollect(
myTheory,
RenameColumns(
galCollect,
"Title","coll_Title",
"Users_That_Submitted","coll_Users_That_Submitted",
"Status","coll_Status"
)
);