Hi all,
I would like help on the following problem. I would like to create a form that will have two drop downs (combo or list box), one of which will be a row and the other will be a column. The column values will be a count based on each row value. I've reproduced an example from the Northwind data below. Basically, I would like someone to be able to select one variable (field) and then another to compare and hit SUBMIT and generate a report based on a cross tab query. Any assistance is much appreciated!
I would like help on the following problem. I would like to create a form that will have two drop downs (combo or list box), one of which will be a row and the other will be a column. The column values will be a count based on each row value. I've reproduced an example from the Northwind data below. Basically, I would like someone to be able to select one variable (field) and then another to compare and hit SUBMIT and generate a report based on a cross tab query. Any assistance is much appreciated!
Code:
TRANSFORM Count(Products.[Target Level]) AS [CountOfTarget Level] SELECT Products.[Supplier IDs].[Value], Count(Products.[Target Level]) AS [Total Of Target Level] FROM Products GROUP BY Products.[Supplier IDs].[Value] PIVOT Products.[Target Level];
Comment