B
Bob Vance
I want to sort Horse that has Invoicing (true)
But if the same Horse has a (False) no sort
Horse can appear Many times in this Column so only If they are all (same
Horse)True to Sort
Thanks in advance for any help with this......Bob
WindowsXP..MS Access 2007
SELECT tblHorseDetails.Horse, tblHorseDetails.Invoicing
FROM tblHorseDetails
GROUP BY tblHorseDetails.Horse, tblHorseDetails.Invoicing;
But if the same Horse has a (False) no sort
Horse can appear Many times in this Column so only If they are all (same
Horse)True to Sort
Thanks in advance for any help with this......Bob
WindowsXP..MS Access 2007
SELECT tblHorseDetails.Horse, tblHorseDetails.Invoicing
FROM tblHorseDetails
GROUP BY tblHorseDetails.Horse, tblHorseDetails.Invoicing;