G
Guest
I have a nasty normalization problem. I have inherited an excel dataset that would be better managed in access. The data looks like this:
Plot Year Spp1 Spp2 .... Spp100
1 1997 0 2 50
1 1998 10 0 30
2 1997 0 5 15
2 1998 5 5 25
I have 100 Plant species names as field names (or columns) - not my design!! and for each a number representing abundance for a particular plot and year (approximately 1500 records)
I need the data to look like something this - 4 fields (plot, year, species, abundance)
Plot Year Species Abundance
1 1997 Spp1 0
1 1997 Spp2 2
...
1 1997 Spp100 50
2 1997 Spp1 0
2 1997 Spp2 5
...
2 1997 Spp100 15
1 1998 Spp1 10
1 1998 Spp2 0
...
1 1998 Spp100 30
2 1997 Spp1 0
2 1997 Spp2 5
...
2 1997 Spp100 15
I believe I need to normalize this data but an unsure about how to do it. Is there a simple solution as I am an Access Newbie. I have tried to create a new table with a cross tab but am not getting what I want.
Plot Year Spp1 Spp2 .... Spp100
1 1997 0 2 50
1 1998 10 0 30
2 1997 0 5 15
2 1998 5 5 25
I have 100 Plant species names as field names (or columns) - not my design!! and for each a number representing abundance for a particular plot and year (approximately 1500 records)
I need the data to look like something this - 4 fields (plot, year, species, abundance)
Plot Year Species Abundance
1 1997 Spp1 0
1 1997 Spp2 2
...
1 1997 Spp100 50
2 1997 Spp1 0
2 1997 Spp2 5
...
2 1997 Spp100 15
1 1998 Spp1 10
1 1998 Spp2 0
...
1 1998 Spp100 30
2 1997 Spp1 0
2 1997 Spp2 5
...
2 1997 Spp100 15
I believe I need to normalize this data but an unsure about how to do it. Is there a simple solution as I am an Access Newbie. I have tried to create a new table with a cross tab but am not getting what I want.