Hello,
I'm new to MS Access 2010. I have a situation where I have a table of names and a table of aliases that I'd like to display in one continuous form. They are linked as follows and one name can have many aliases:
tbl_Names:
--------------
ID as AutoNumber (primary key)
Name as Text
Sample data:1 Alan
2 Ben Smith
3 Charlie L
4 Darren C Langworthy
5 Ed Liu
tbl_Aliases:
--------------
ID as AutoNumber
Name_ID (tbl_Names one to many relationship)
Alias as Text
Sample data:1 3 Charlie
2 1 Big Al
3 5 The Chinaman
4 2 The Terminator
5 1 All Over It
6 4 Dags
7 2 Afterglow
8 5 On Your Case
9 3 Charles
In a Text Box, I would like to display the merged fields of tbl_Name(Name) and tbl_Alias(Alias) sorted alphabetically, with Names formatted differently to Aliases as follows:
Afterglow
Alan
All Over It
Ben Smith
Big Al
Charles
Charlie
Charlie L
Dags
Darren C Langworthy
Ed Liu
On Your Case
The Chinaman
The Terminator
I'm just not sure how to tackle this. Any advice appreciated.