I have a CODA doc that I’m using to track all of the integration projects I have currently going on. Part of the tracking is that I keep track of the features released for that project. I have a table “catalogue” from were I pull all the available features for me to select, and then I want another column that shows which Features are pending to be implemented by filtering from the catalogue the selected fields from the user.
I tried filtering the “Not Supported Features Yet” column based on the catalogue import minus the selected features from the user, but with no luck :
Features.Filter(thisRow.Features)
Anyone who can help on this matter? Here’s a quick doc I created to illustrate the issue:
@mallika
I used this one! Features.Filter(not(thisRow.Features.Contains(CurrentValue)))
It worked perfectly!
Not sure if it was too easy but I was stuck with that for the last week, thanks for the help. I think my issue was that I was comparing table to values and it should have been values to values.