Slice

Hello Everyone,

I want to create a slice with status=“current” and follow the expiration dates and show what expires within 30 days.
So, for example: [Status]=“Current” and [Technical exam]<=TODAY()+30,
How can I do this to make the slice work?

Thank you for the help,

Please use AND() function in the slice row filter expression something like

AND( [Status]=“Current” , [Technical exam]<=TODAY()+30)

AND() - AppSheet Help

3 Likes

Thank you. And if I want to add 2 more columns at once? Is this still the principle?

1 Like

If you mean in the AND() condition , then yes, one can add as many columns as one wants.

1 Like

If I write with only one column, it works. If with two, then no. What did I do wrong?

1 Like

Maybe the table does not have any records that satisfy the row filter condition. Please use the Test button under the expression to evaluate the expression results. The test results give clues about where the expression or test data needs to be corrected.

1 Like

Solved it.

Great, thank you for the update.