Charts - Week ending

Riviera*

New Member
Joined
Feb 9, 2003
Messages
27
I have produed a chart in Access which has week numbers (1 - 52) on the x axis. The chart will display week 1, week 2 etc.. Instead of the week number I want the date of the week commencing displayed on the x axis.

Any ideas.

Thanks.

RiV.
 

Excel Facts

VLOOKUP to Left?
Use =VLOOKUP(A2,CHOOSE({1,2},$Z$1:$Z$99,$Y$1:$Y$99),2,False) to lookup Y values to left of Z values.
Do you wish to fix the problem in Access or Excel?

In Access you could do

DateValue("1/1/2003")+(WEEK_NUMBER*7)-7


or something along those line where WEEK_NUMBER is the value you are generating and 1/1/2003 is the first report date you wish to show

You could generate the 1st of the year date by doing

DateSerial(Year(Date()),1,1)

If you which to do the conversion in excel you can do a simular calculation
=B$3+(A4*7)-7
Where B3 contain the first date (1/1/2003) and A4 down contains the weeknumbers.

Hope this helps.

ebkid
 
Upvote 0

Forum statistics

Threads
1,221,567
Messages
6,160,541
Members
451,655
Latest member
rugubara

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