Custom Views, displaying only failed builds when NOT_BUILT is present

Jenkins setup:

Just a typical docker container, Version 2.514 on JDK17. Create a view and add the filter to show your builds. Add the following filters:

Job Status Filter → Stable/Disabled → Exclude
Build Status Filter → Never Built → Exclude

The resulting view will show both broken and NOT_BUILT builds. In our system NOT_BUILT doesn’t necessarily mean broken, it may just mean skipped.

Now you may think, why don’t I just include only stable builds? That doesn’t work, because Job status considers NOT_BUILT as also being Stable.

I want to make the view not show NOT_BUILT, is there a way to do this or do I need to add my own modification to the Job Status Filter?