Sorry this is so long... but the question is can I only delete the ColorID from a Car Record if I delete a color in the Color Table. The Car table and color tables are joined on ColorID. Every time I try it, it deletes the whole car record, not just the car's ColorID.
I have what I call sub tables setup with repetitive type info them. They are joined to the main tables so user input is consistent.
Ex.
stblColor
ColorID(autonumber)-1
Color-Red
Joined by ColorID with Ref Integ and Cascade Update/Delete checked to...
tblCar
CarID(autonumber)-5
ColorID-1
So Car 5 is Red.
The user selects the color red from a combo box. But if they type in something not in the list (purple) it prompts them "Do you want to enter Purple in the list." If they say yes it puts Purple into stblColor and the combo box then displays Purple as an option.
stblColor
ColorID-2
Color-Purple
So now
CarID-5
ColorID-2
...is now Purple.
If the user misspells a color or does not want the option available anymore and wants to delete it from stblColor....
is there a way to delete the color purple from stblColor without deleting the whole car record, I just want the color field in tblCar to be cleared of any color ID.
I have what I call sub tables setup with repetitive type info them. They are joined to the main tables so user input is consistent.
Ex.
stblColor
ColorID(autonumber)-1
Color-Red
Joined by ColorID with Ref Integ and Cascade Update/Delete checked to...
tblCar
CarID(autonumber)-5
ColorID-1
So Car 5 is Red.
The user selects the color red from a combo box. But if they type in something not in the list (purple) it prompts them "Do you want to enter Purple in the list." If they say yes it puts Purple into stblColor and the combo box then displays Purple as an option.
stblColor
ColorID-2
Color-Purple
So now
CarID-5
ColorID-2
...is now Purple.
If the user misspells a color or does not want the option available anymore and wants to delete it from stblColor....
is there a way to delete the color purple from stblColor without deleting the whole car record, I just want the color field in tblCar to be cleared of any color ID.