Hi everyone,
I am trying some multiple filters on a datatable with 2 checkboxes. The first checkbox toggles between column "status", showing all statuses or showing only status of projects that are on-going.
Demo01Dashboard is the SharepointList. So if Checkbox 3 = true it shows all, if its false it shows just a few. This works fine.
Filter(Demo01Dashboard; Checkbox3.Value=true
And (Status.Value = "Afgerond" Or Status.Value = "Vervallen" Or Status.Value = "Teruggegeven" Or Status.Value = "Inventarisatie" Or Status.Value = "Implementatie" Or Status.Value = "KYC" Or Status.Value = "Afronding" Or Status.Value = "On-Hold" Or Status.Value= "Toe te wijzen")
Or Checkbox3.Value = false And (Status.Value = "Inventarisatie" Or Status.Value = "Implementatie"
Or Status.Value = "KYC" Or Status.Value = "Afronding" Or Status.Value = "On-Hold" Or Status.Value= "Toe te wijzen"))
Now I want to add an extra filter with checkbox to toggle between your own projects or the projects of the whole team by column "ImpManager".
The column "ImpManager" in the SPlist are e-mail addresses, so I can connect that with a label with the e-mail address in with the current user.
So if I update the formula with:
; CheckboxImpManager.Value=false;ImpManager.Value=LabelEmail.Text)
It will only show my project when the checkbox is turned off.
But now I also have to make a statement on when the checkbox is true and it needs to show all values in column "ImpManager". And there I get lost :).
Help much appreciated!
Kind regards,
Roger Middleton