I have a confiform table view with multiple records. I want to remove those records by filter having same recordId and if any one have status as completed
For eg
RecordId. Name. Status
1. John. Completed
1. John. In Process
2. Alex. In process
2. Alex. Empty
I want to remove records with record Id 1 as it has completed in one of the records
Please help
You cannot have records with a same record id if we talk about the internal metadata field called "recordId"
If it is about some other field that is named as record id then I suggest order records by created DESC (Ordering/Sorting rules to apply on entries dataset) and set the "Apply distinct filter to return only unique records" parameter in the TableView
Alex
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.