Hi.
I am trying to add multiple conditions to a Filter query i tried so many different combinations (using parenthesis, using or, using and etc) but i cannot make it to work
We have a number of Site Pages (we use them for IT Knowledge base articles) and the page properties are used for filtering, notifying etc, the columns names are Reviewed By, Review Date, Approved by, Approval Date, Document type, ref number, System.
The notification i want to create is a scheduled one (to go through the document library every Monday morning and check if there are any empty fields in the above mentioned columns)
there are 2 things i want to leave out: sub-folders, and any file with a type Main
So, if i go to filter query and type:
Author0 eq null and FSObjType eq 0 and ToFilterNotifications ne 'Main'
It brings me all the pages where the Author column is empty and it does not include Folders or those tagged as Main
If i try to add another column for example Reviewed_x0020_By eq null then it still only bring the ones with Author empty but not the ones with Reviewed by empty.
I tried
Reviewed_x0020_By eq null or Author0 eq null and FSObjType eq 0 and ToFilterNotifications ne 'Main'
(Reviewed_x0020_By eq null or Author0 eq null) and FSObjType eq 0 and ToFilterNotifications ne 'Main'
(Reviewed_x0020_By eq null or Author0 eq null) and (FSObjType eq 0 and ToFilterNotifications ne 'Main')
(Reviewed_x0020_By eq null and FSObjType eq 0 and ToFilterNotifications ne 'Main') or (Author0 eq null and FSObjType eq 0 and ToFilterNotifications ne 'Main')
ETC
is there a way to get this done?
Basically I want it to bring all the items where
Reviewed By or Review Date or Approved by or Approval Date or Document type or ref number or System
and Type is 0 and FilerNotification is not Main
Really hope there is a way, that will allow me to run only one flow instead of 7
Thank you