Reports

Mick_Hart

New Member
Joined
Nov 19, 2004
Messages
32
Im trying to place a cross tab table into a report.

However, i keep getting errors stating that the micorsoft jet engine cant find a certain column.

Does anyone know of a way of getting round this? Possibly by generating the report on the fly or something?
 

Excel Facts

Highlight Duplicates
Home, Conditional Formatting, Highlight Cells, Duplicate records, OK to add pink formatting to any duplicates in selected range.
My table contains the following fields

Client - a list of our client names
Date - dates
Time - specific times
Round - time rounded to the nearest 15mins
Calls - number of calls

Ive just access's wizard for making the crosstab -
Code:
TRANSFORM Sum(Query.Calls) AS SumOfCalls
SELECT Query.Date, Query.Client, Sum(Query.Calls) AS [Total Of Calls]
FROM Query
GROUP BY Query.Date, Query.Client
PIVOT Query.Round;

This is the SQL used.
 
Upvote 0

Forum statistics

Threads
1,221,848
Messages
6,162,419
Members
451,765
Latest member
craigvan888

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top