Crosstab query with dupl values in row question

T

Tim 9000

I'm using a crosstab query, which requires me to GroupBy Row and Column
headings.

For the Row headings, I want the field 'Name', which unfortunately contain
duplicate values.

So I must GroupBy NameID instead. This gives me the proper grouping, except
I lose the literal 'Name's, and I want them back.

What approaches can I do to GroupBy NameID, but view the Name instead, being
that I can only have one Row and one Column per crosstab query?

Thanks.
 
D

Duane Hookom

Group by both NameID and Name as row headings.

BTW: Name is not a good name for a field since every field has a name
property which can cause confusion. You are much better off using field
names like EmpFirstName, EmpLastName, CustFirstName, ContactFirst,...
 
T

Tim 9000

Perfect. For some reason I thought you could only use one row and column
value per crosstab query.

Thanks.
 
D

Duane Hookom

You can use as many row headings as you like. Generally you can use only one
value and one column heading but there are methods around this also.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top