My updated tables...
Questions
-------------
*question_id autonumber NOT NULL
question_desc nvarchar(255) NOT NULL
Survey
-------------
*survey_id autonumber NOT NULL
survey_date datetime NOT NULL
survey_client_id int NOT NULL
Questions_Survey
-------------
*line_id autonumber NOT NULL
question_id int NOT NULL
survey_id int NOT NULL
Clients
-------------
client_id autonumber NOT NULL
client_lname nvarchar(255) NOT NULL
client_fname nvarchar(255) NOT NULL
Answers
-------------
*line_id autonumber NOT NULL
question_id int NOT NULL
survey_id autonumber NOT NULL
responce1-50 nvarchar(255) NOT NULL
I hope my tables look alright, I have many more questions, but I think its safe to say I should get my design set first before I start about inserting data.