Joining two searches into single filter - FogBugz Knowledge Exchange most recent 30 from http://fogbugz.stackexchange.com 2013-05-24T21:39:49Z http://fogbugz.stackexchange.com/feeds/question/10713 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://fogbugz.stackexchange.com/questions/10713/joining-two-searches-into-single-filter Joining two searches into single filter rtzong 2012-08-15T22:29:39Z 2012-08-24T22:19:11Z <p>I have created two custom fields, one is a drop-down with different categories and the other is a number. To serve as an easy to understand example, let's say the drop-down field is named Type and has (weight, age) as possible selections and the number field is named Value and accepts an integer.</p> <p>I would like to have a filter that shows me all People (bugs) that are either 25 years old or younger, or weigh less than or equal to 300 pounds.</p> <p>The one I am trying to use is <em>(Type:"age" Value:"0..25") OR (Type:"weight" Value:"0..300")</em>. However, it's actually returning a list of People who weigh less than or equal to 300 pounds and are 300 years old or younger. Individually, meaning just a search for people &lt;=25 y.o. or just a search for people &lt;= 300 lbs works fine. It's when I try to view them together that this problem comes up.</p> <p>Is any of the syntax incorrect? I'm not sure what is wrong about the filter or if there are any known issues that would cause this to happen.</p>