Re: Using Select
- To: mathgroup at smc.vnet.net
- Subject: [mg76316] Re: Using Select
- From: CKWong <CKWong.P at gmail.com>
- Date: Sat, 19 May 2007 04:48:14 -0400 (EDT)
- References: <f2h94p$12p$1@smc.vnet.net>
If the values of the data on different fields are always different, then it's easier to use this: Cases[ myData, { ___ , Blue, ___ } ] or Cases[ myData, { ___ , Blue, ___, "Hello", ___ } ] where ___ stands for 3 consecutive underscores.