turniporange23
New member
- Local time
- Today, 21:26
- Joined
- Sep 1, 2024
- Messages
- 19
There is about 20 fields in each record, but if these 4 fields are all empty I want the record deleted. All the fields are Short text. At the moment I have a record that has 4 empty filds but it is not asking to Delete 1 Record.
Thanks for any help.......Bob
DELETE tblHorseInfo.HorseName, tblHorseInfo.FatherName, tblHorseInfo.MotherName, tblHorseInfo.StableName
FROM tblHorseInfo
WHERE (((tblHorseInfo.HorseName)="") AND ((tblHorseInfo.FatherName)="") AND ((tblHorseInfo.MotherName)="") AND ((tblHorseInfo.StableName)=""));
Thanks for any help.......Bob
DELETE tblHorseInfo.HorseName, tblHorseInfo.FatherName, tblHorseInfo.MotherName, tblHorseInfo.StableName
FROM tblHorseInfo
WHERE (((tblHorseInfo.HorseName)="") AND ((tblHorseInfo.FatherName)="") AND ((tblHorseInfo.MotherName)="") AND ((tblHorseInfo.StableName)=""));