cbouknight
Programmer
I'm trying to query a table to produce results that are the "combined" results of rows with "some" matching columns that are not numeric.
Example:
MyTable
Key CustNo GA MA FS
--- ------ --- --- ---
1 123456 Yes No No
2 123456 No Yes Yes
3 123456 No Yes No
4 456789 Yes No No
5 456789 No Yes No
I want to end up with this as the query result:
CustNo GA MA FS
------ --- --- ---
123456 Yes Yes Yes
456789 Yes Yes No
I've read the FAQs and some of the posts here, but the examples I've found will only help if the GA, MA and FS columns above are numeric.
Thanks for any help.
Example:
MyTable
Key CustNo GA MA FS
--- ------ --- --- ---
1 123456 Yes No No
2 123456 No Yes Yes
3 123456 No Yes No
4 456789 Yes No No
5 456789 No Yes No
I want to end up with this as the query result:
CustNo GA MA FS
------ --- --- ---
123456 Yes Yes Yes
456789 Yes Yes No
I've read the FAQs and some of the posts here, but the examples I've found will only help if the GA, MA and FS columns above are numeric.
Thanks for any help.