crosstab date issue

llaman

New Member
Joined
Jul 14, 2004
Messages
37
I am trying to run a crosstab query that has the row heading of project name,
hours as the value (sum aggregate function), and a column header of entrydate.

I have the entry date formatted as mm/yyyy, but it is initially entered with day. When I run the crosstab, it makes a seperate column for each day, instead of by month. Is there a way of fixing this without losing data accuracy (i.e. turning the data from 05/01/04 to 05/04)?
 

Excel Facts

How can you automate Excel?
Press Alt+F11 from Windows Excel to open the Visual Basic for Applications (VBA) editor.
Say your date field is called DateField, you could try this:

MonthYear:Format([DateField], "mm") & "/" & Format([DateField], "yy")

You could do this in a select query then use that query as the source for the crosstab.
 
Upvote 0

Forum statistics

Threads
1,221,827
Messages
6,162,200
Members
451,753
Latest member
freddocp

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