Whatever solution you use, you'd have to create a view.
Something like
select Category,Grade from myTable group by Category,Grade
So, in effect, you'd then have 2 tables.
--
Jules
http://www.charon.co.uk/products.aspx
Charon Cart
Ecommerce for ASP/ASP.NET
"riprod7" <webforumsuser@macromedia.com> wrote in
message
news:fji912$h3d$1@forums.macromedia.com...
>I actually found that tutorial before but it is not what
I need. In that
> example, they have 2 different tables. Categories and
Products. I only
> have 1
> table that looks like this :
>
> Category1 | Grade A | fabricname1
> Category1 | Grade A | fabricname2
> Category1 | Grade A | fabricname3
> Category1 | Grade B | fabricname4
> Category1 | Grade B | fabricname5
> Category2 | Grade A | fabricname6
> Category2 | Grade B | fabricname6
> etc. etc.
>
> You really think that there would be a simple way to
group this list. I'm
> considering changing my whole project from ASP.NET back
to classic ASP.
>
>