C
Clddleopard
I have a table that has the fields SpeciesID and Frequency (both Long
Integer). Example Data:
SpeciesID Frequency
1 3
2 1
3 4
I would like somehow to see the resulting data:
SpeciesID
1
1
1
2
3
3
3
3
In other words, have SpeciesID represented in the data set as many times as
it has frequency in the original table.
Any ideas?
Integer). Example Data:
SpeciesID Frequency
1 3
2 1
3 4
I would like somehow to see the resulting data:
SpeciesID
1
1
1
2
3
3
3
3
In other words, have SpeciesID represented in the data set as many times as
it has frequency in the original table.
Any ideas?