R
realspido
Hi everybody,
I'm trying to create a relationship between my database and excel sheet
containing information about employees spent time. This is how the excel
sheet looks like:
exc_table:
date empl_no hours
5/5/06 0001 7
.....
I made Link table in my database.
my database is made from two linked tables:
table1:
key date
1 5/5/06
.....
table2
key_link emp_no
1 0001
1 0002
....
there's a relationship between: table1.key and table2.key_link
I thought, to make a relationship between my database and excel sheet I have
to create a unique code in both of them. I made queries:
query1:
expr: [exc_table.date]&[exc_table.empl_no]
sum of hours: [exc_table.hours]
querry2:
expr: [table1.date]&[table2.empl_no]
table2.key_link
table2.empl_no
Creating relationships between those two queries (between expressions)
didn't work, so I decided to make queries as 'Make-table query' but then I
cant add any data in table1 and table2.
What am I doing wrong?
Please help me!!!
I'm trying to create a relationship between my database and excel sheet
containing information about employees spent time. This is how the excel
sheet looks like:
exc_table:
date empl_no hours
5/5/06 0001 7
.....
I made Link table in my database.
my database is made from two linked tables:
table1:
key date
1 5/5/06
.....
table2
key_link emp_no
1 0001
1 0002
....
there's a relationship between: table1.key and table2.key_link
I thought, to make a relationship between my database and excel sheet I have
to create a unique code in both of them. I made queries:
query1:
expr: [exc_table.date]&[exc_table.empl_no]
sum of hours: [exc_table.hours]
querry2:
expr: [table1.date]&[table2.empl_no]
table2.key_link
table2.empl_no
Creating relationships between those two queries (between expressions)
didn't work, so I decided to make queries as 'Make-table query' but then I
cant add any data in table1 and table2.
What am I doing wrong?
Please help me!!!