Using Crystal 10.
Products in my database (SQL 200) are categorized into product levels. Ultimately, I want my report to group on those levels. For example:
GH1 =Level 1 (tblCategory.CategoryLevel=1)
GH2 = Level 2 (tblCategory.CategoryLevel=2)
GH3 = Level 3 (tblCategory.CategoryLevel=3)
GH4 = Products Width
GH5 = Products Height
Details 1
Details 2
Details 3
Bad news is the level information is all retained in one table call tblCategory with the following self explanatory field names:
CategoryID
CategoryLevel
CategoryCode
CategoryName
CategoryDescription
Can this be done? If so, guidance is appreciated.
Products in my database (SQL 200) are categorized into product levels. Ultimately, I want my report to group on those levels. For example:
GH1 =Level 1 (tblCategory.CategoryLevel=1)
GH2 = Level 2 (tblCategory.CategoryLevel=2)
GH3 = Level 3 (tblCategory.CategoryLevel=3)
GH4 = Products Width
GH5 = Products Height
Details 1
Details 2
Details 3
Bad news is the level information is all retained in one table call tblCategory with the following self explanatory field names:
CategoryID
CategoryLevel
CategoryCode
CategoryName
CategoryDescription
Can this be done? If so, guidance is appreciated.