Hi guys,
I used a couple of youtube movies to filter my gallery. I tought everyting was working but, it if i click on a item in my gallery. It always opens the newest one instead of the one i clicked. if i remove my filters on the gallery it works well..
I hope someone can help me with this.
SortByColumns(
Filter(
SPLIST1;
StartsWith(
Datum;
TextSearchBox12_1.Text
) && IsBlank(ComboBox2.SelectedItems.Value) || IsEmpty(ComboBox2.SelectedItems) || Discipline in ComboBox2.SelectedItems;
Datum >= dpFrom.SelectedDate && Datum <= dpTo.SelectedDate;
If(
ShowEigen.Value = true;
Melder = User().FullName;
ShowEigen.Value = false
)
);
"Datum";
Descending;
"ID";
Descending
)
It works with my Sharepoint list: SPLIST1
I have a search textbox that search on the column Datum (date).
Then i filter on a multiple selectbox (dropdown menu multiple selected)
And i filter with 2 date pickers.
The last one is a checkbox, if checked (by default) it only shows your own items (on the 365 office name).
The Filters are working but only opens the newest item unfortenetly.