acpowell Posted September 6, 2016 Report post Posted September 6, 2016 This is a hard one for me. I can create a collection that can find an app name, and one that finds a exe version. What I need is 1 collection that can find Program A by name and Program B buy EXE file version. I can't figure out how to merge them into one query/collection. Quote Share this post Link to post Share on other sites More sharing options...
GarthMJ Posted September 6, 2016 Report post Posted September 6, 2016 Is it an "either or" or "and" that you need for the query? Quote Share this post Link to post Share on other sites More sharing options...
tregelen Posted September 6, 2016 Report post Posted September 6, 2016 As said there is an 'or' and 'and' button. If you didn't want to do that you could always create a third collection that includes the members of the other two. Quote Share this post Link to post Share on other sites More sharing options...
Jaybone Posted September 8, 2016 Report post Posted September 8, 2016 Alternatively, you could have three collections: 1 = AppNameCollection 2= ExeVerCollection 3= ComboCollection - instead of query, just include AppNameCollection and ExeVerCollection I forget the details of why, but I've had to do this for Java, to get both 32-bit and 64-bit instances into one big collection - trying to write a single query that would catch both would just not work as I expected. My expectations were probably wrong, heh. Quote Share this post Link to post Share on other sites More sharing options...