Hi All,
I've been following one of Shane Young's video's on making a calendar in PA
Trying to shape it to my needs a little, I want the filter to only fetch results if a certain choice is used within a set column
So as an example, my SP list is called Staff Secondments, the column I want the formula to filter is called 'Seconded Line' and I only want the filter to display any record with 'Training Line'
ClearCollect(
colsecondevents,
Filter(
'Staff Secondments',
('Seconded Start' > varseconsfirstdayview And 'Seconded Start' <= varsecondnextmonth) Or ('Secondment Finish' > varseconsfirstdayview And 'Secondment Finish' <= varsecondnextmonth) Or ('Seconded Start' <= varseconsfirstdayview And 'Secondment Finish' > varsecondnextmonth
)
));
Any Advice?