Dear All,
I'm having difficulty adding a new column to a collection.
FaultLog is my SharePoint data source.
SubmitDate is in the format ddd dd/mmm/yy (eg MON 28/SEP/20).
I'm wanting to create a new Column "Month" with just the month extracted from SubmitDate.
Reading the documentation I'm reasonably sure I need to use "AddColumns" but can't seem to get it to work in conjunction with ShowColumns
Here's what I have for "OnVisable";
ClearCollect(
FaultReportColl,
ShowColumns(
FaultLog,
"SubmitDate",
"Description",
"Title"
)
)
Thanks for looking,
Ad.