Hi everyone,
I have/had a situation very similar to another recent thread, “Table Setup Help...”, but I read the thread and had a go at normalizing my analogous table. My old table, Fund, looked like this:
(AssetClassId is a foreign key for another relationship.)
I didn’t like it much, but I thought it was the only way to go. The other thread helped me a lot and I came-up with two tables, Fund and Price, instead:
Do you agree that this is normalized and is the correct way to go? Like the other thread mentions, if I have, say, fifty funds, I will have to add fifty new records to the Price table every month or quarter (or however frequently I decide to keep data), but hopefully a well-made form can make that pretty easy. (The long-term goal is to have it downloaded automatically with VBA, but I have no idea how to do that yet,)
I have attached screenshots of the tables as an alternative to my ASCII art
. I wanted to share this and also get opinions on whether this is good or not.
Thank you!
Ryan
PS
Should I add a post to the other thread linking to this one if this one works-out?
I have/had a situation very similar to another recent thread, “Table Setup Help...”, but I read the thread and had a go at normalizing my analogous table. My old table, Fund, looked like this:
Code:
________________
|Fund |
|================|
|* Id |
| AssetClassId |
| Fund |
| Symbol |
| Price20070131 |
| Price20070228 |
| Price20070331 |
| Price20070430 |
| ... |
|________________|
I didn’t like it much, but I thought it was the only way to go. The other thread helped me a lot and I came-up with two tables, Fund and Price, instead:
Code:
______________
________________ |Price |
|Fund | |=============|
|================| | *Id |
| *Id | 1 ------- ∞ | FundId |
| AssetClassId | | Price |
| Fund | | PriceDate |
| Symbol | |_____________|
|________________|
I have attached screenshots of the tables as an alternative to my ASCII art

Thank you!
Ryan
PS
Should I add a post to the other thread linking to this one if this one works-out?