So I wasn't sure if this was something that is possible in the current feature set but I figured I'd ask. I would like to be able to write a filter that returns to me all of the cards for a given set that are not in My Precious. I know that Needed seems like the answer to this but it actually isn't. I set my needed up with a set for 4x Common, 4x Uncommon, 2 x Rare, and 1x Mythic Rare. I currently am looking for a filter to tell me which cards I don't own any of, which my needed isn't really showing me. Is there anyway with the advance predicate to make this work? Thanks.
Nah, should be easier. I'll try to post how-to tomorrow.
Any thoughts on this?
Ah, yes. "Not In Collection" Bookmark is probably what you need. Collection is defined as My Prss + Trade binders, so you can modify the Advanced Predicate by removing "or $x.binder.type' = 1", to make it show everything not in your My Prsss binders.
So I played around with it a little and have another question. The "@count" variable seems to only apply to how many binders it is in. I was tooling around and hoping to get up a query that tells me if I have less than 4 of a given card. Is there another way to do that?
Try SUBQUERY( binderentries, $x, $x.binder.type = 0 ).@count = 0 or subquery( binderentries, $x, $x.binder.type = 0 and $x.count < 4 ).@count > 0
But this one will miss the ones you have split across multiple binders. You could try playing with @sum to clever all, but I'm not sure if its possible, please post here if you succeed.