Well that is really a different question. The way you posed your question is that a user of your site will select a band and then you will display information based off of X band.
So you can do this 2 ways, the most effecient being through SQL:
SELECT DISTINCT Albumn, Year FROM <table> where artist = '<someartist>'
You can, however, return all of the data from your table and then use the recordsets Filter property to only get the data you want:
objrs.Filter = "Artist = 'some artist'"
Does that clear things up a bit better?
================================================== =========
Read this if you want to know how to get a correct reply for your question:
http://www.catb.org/~esr/faqs/smart-questions.html
================================================== =========
.: Wrox Technical Editor :.
Wrox Books 24 x 7
================================================== =========