Hello, i have this slice containing quick edit data, and i want it to filter the whole tasks, and shows only the taks that is set on the “Data” field, how can i do it?
Your Tasks View must be based on a Slice. And the Slice’s Row Filter Condition needs to reference the selected date value.
the tasks and the date picker are separate slices, but when i change the date on the date picker, the tasks keeps the same, its not filtering… How can i enable the filtering feature?
Marc_Dillon:
Your Tasks View must be based on a Slice. And the Slice’s Row Filter Condition needs to reference the selected date value.
The Task Slice’s row filter condition should contain something like:
[Date] = ANY( date-picker-slice[date] )
[Referencing a Column value in a Table, versus referencing ALL Column values in the entire Table](https://community.appsheet.com/t/referencing-a-column-value-in-a-table-versus-referencing-all-column-values-in-the-entire-table/50771) Tips & Tricks ?
Having answered this question about 1 million times now, I guess I should make a tips-and-tricks post about it. Expressions of the form Table[Column] return a List type data value that contains the values in Column for ALL records in the entire Table. Most likely, If I’ve referred you to this post, the answer to your question is simply to change it to just: [Column] One of the most common places I’ve seen new app builders use this, is within SELECT() expression, like: SELECT( Table[Col…
Hi, can you explain more about how it works? I have this data which I need to filter it by inputting specific date. I want the date input to be dynamic. Or if you have maybe youtube video which explain about this I would like to check it out. Thank you.
