> Hi
> i have imported two tables from excel each table contains information
[quoted text clipped - 19 lines]
>
> thanks kevin
So you no longer have two tables, but one - is this how you want the data
structured?
Does the data really only relate to two teams and the main form only
displays team 1 and 2, or will the form be used to show other 'pairs of
teams'? What about any other functionality of the form, eg find, sort, add,
edit delete?
At its simplest (and if there are no other requirements) I would have an
unbound main form with two subforms with recordsources of:
SELECT MyTable.* FROM MyTable WHERE MyTable.Team=1
SELECT MyTable.* FROM MyTable WHERE MyTable.Team=2
kevcar40 - 09 Jan 2006 20:23 GMT
kevcar40 - 09 Jan 2006 20:44 GMT
Anthony
i have created the unbound form and inserted two sub forms is there any
reason why i can not write to a text box in the sub forms
thanks again for your help
kevin
Anthony England - 09 Jan 2006 20:45 GMT
> Anthony
> i have created the unbound form and inserted two sub forms is there any
> reason why i can not write to a text box in the sub forms
> thanks again for your help
> kevin
Can you see the data and not able to edit it? Or are you talking about
adding a new record?
Is the textbox bound to a field?
Have you set AllowEdits?
kevcar40 - 10 Jan 2006 07:33 GMT
Good morning Anthony,
1. i can see the data in all the fields
2 the textbox is bound to a field in the table
3 allowedits is set to yes
i am returning the data from the tables(imported from excel ) i have a
field then called action
this is where i want the user to enter data, the field will record the
action taken
Anthony England - 10 Jan 2006 09:26 GMT
> Good morning Anthony,
> 1. i can see the data in all the fields
[quoted text clipped - 4 lines]
> this is where i want the user to enter data, the field will record the
> action taken
I can't think what else might be wrong. If you can write directly to the
table, but not the form then double check the SQL behind the subforms - it
should be a standard SELECT (no TOP or DISTINCT) and the recordsource type
should be dynaset (if it were snapshop that would stop you editing)
Anyway, if you're still stuck - send me a copy of the mdb file. I've let
you know my contact details via e-mail (assuming you post your real e-mail
address).