I need to compile data in a cross tab table.
For example:
In the month of Sept., the following employees had these stats.
# of apps #of orders # of requests
Stevens 3 4 5
Hill 6 5 8
Lin 6 0 9
Shone 2 7 1
Each column of data comes from different tables in the database..
Is it possible to accomplish this using the cross tab expert or do I need to create a manual crosstab table. And if a manual cross tab needed, where do I find samples?
# of apps count(app) from appstable where appsdate is between 9/1–9/30
# of requests count(requests)from requests stable where requests date is between 9/1–9/30
#of orders count(orders) from orders table where ordersdate is between 9/1–9/30
For example:
In the month of Sept., the following employees had these stats.
# of apps #of orders # of requests
Stevens 3 4 5
Hill 6 5 8
Lin 6 0 9
Shone 2 7 1
Each column of data comes from different tables in the database..
Is it possible to accomplish this using the cross tab expert or do I need to create a manual crosstab table. And if a manual cross tab needed, where do I find samples?
# of apps count(app) from appstable where appsdate is between 9/1–9/30
# of requests count(requests)from requests stable where requests date is between 9/1–9/30
#of orders count(orders) from orders table where ordersdate is between 9/1–9/30