Filter Query

Saleh
New Member

I have a table called DB and with a column called Status.

The status values are typically:
โ€˜In progressโ€™,
โ€˜Hide-not requiredโ€™,
โ€˜hide - completedโ€™

I want to display all the rows where the Status column does not contain the word โ€˜hideโ€™.

What code do I write in the 'Row filter condition;?

Many thanks

Solved Solved
0 5 544
1 ACCEPTED SOLUTION

@Saleh
I believe you are trying to create a slice. You can use below expression for that purpose:

NOT(CONTAINS([Status],"Hide"))

View solution in original post

5 REPLIES 5

@Saleh
I believe you are trying to create a slice. You can use below expression for that purpose:

NOT(CONTAINS([Status],"Hide"))

Yes perfect. Thanks

Youโ€™re welcome. @Saleh can you also mark my reply as the solution pls? Thnx.

Sorry, can I just ask,
Can I also add another statement to that so it that it should filter the rows further s that it only shows rows where the column [Priority] has the letter โ€œUโ€.

Thanks

@Saleh
You can construct an AND expression:

AND(NOT(CONTAINS([Status],โ€œHideโ€)), CONTAINS([Priority],"U"))

OR

AND(NOT(CONTAINS([Status],โ€œHideโ€)), FIND("U",[Priority]) > 0)
Top Labels in this Space