Jeepers321
Technical User
These are my table names
ACTIONS
WHORESP
ACTIONEMP
These table are linked and if I was to open the ACTIONS table and clicked on the + for each record I would be able to see every ACTIONEMP for each ACTION. What I am needing is this same data to show up in a text box. I have tried different expressions such as DLookup, as well as queries with the DLookup expression as well. This might need to be done with VBA.
Basically what I am wanting is this:
ActionID |ActionEmp
1 | Tony, Tom, Bill
2 | Tony, Bill
3 | Tom
4 | Bill, Jack
The best I can get so far is this:
ActionID |ActionEmp
1 | Tony
1 | Tom
1 | Bill
2 | Tony
2 | Bill
3 | Tom
4 | Bill
4 | Jack
Any help would be greatly appreciated.
Thanks in advance.
ACTIONS
WHORESP
ACTIONEMP
These table are linked and if I was to open the ACTIONS table and clicked on the + for each record I would be able to see every ACTIONEMP for each ACTION. What I am needing is this same data to show up in a text box. I have tried different expressions such as DLookup, as well as queries with the DLookup expression as well. This might need to be done with VBA.
Basically what I am wanting is this:
ActionID |ActionEmp
1 | Tony, Tom, Bill
2 | Tony, Bill
3 | Tom
4 | Bill, Jack
The best I can get so far is this:
ActionID |ActionEmp
1 | Tony
1 | Tom
1 | Bill
2 | Tony
2 | Bill
3 | Tom
4 | Bill
4 | Jack
Any help would be greatly appreciated.
Thanks in advance.