Feature List - Ability to add a column indicating number of uncompleted to-do's
In the feature list I want to be able to see all features with a certain status and where there are no to-do/approvals pending for that feature, so that I can bulk edit those features.
2020-05-27_08-2...
2020-05-27_08-26-10.png
Open full size
2020-05-27_08-26-10.png
Guest
May 27, 2020
You should be able to do this with a Custom Worksheet formula field on the Feature.
count(self.features[self.status == “Shipped”])
The limitation is counting the To-Dos/Approvals but this should get you most of the way there.
You should be able to do this with a Custom Worksheet formula field on the Feature.
count(self.features[self.status == “Shipped”])
The limitation is counting the To-Dos/Approvals but this should get you most of the way there.