Move data one field to the right- Is this Possible?

Jax

New Member
Joined
Mar 24, 2003
Messages
34
I have an Access form with a weekly forecast and I would like to know if it is possible for the amounts to move a field to the right along with their dates.
If this is possible how would I do it?
Example
Code:
Weekly Forecast
Date 	    Today	  Today+1 	Today+2 	Today+3	etc..
Amount 1	  1234	    2345	    3456	     4567
Amount 2	    22	     213	     325	      60
Totals	    1256	    2558	    3771	    4627

Tomorrow I would like it to look like this when opened

Code:
Weekly Forecast
Date 	Today	Today+1 	Today+2 	Today+3	etc..
Amount 1		   1234	    2345	     3456	
Amount 2		     22	     213	     325	
Totals		     1256	    2558	     3771
This IS NOT Code but I had trouble keeping it in coloums and readable
TIA
Jax
 

Excel Facts

How to find 2nd largest value in a column?
MAX finds the largest value. =LARGE(A:A,2) will find the second largest. =SMALL(A:A,3) will find the third smallest
I am not sure if it is possible but if it is I would think that you will need to use a Crosstab query. A lot will depend on your data structure. I have not used Crosstabs much, but if you can post details of your table structue someone may be able to point you in the right direction.

Peter
 
Upvote 0
Write a query that calculates the age of each set of records (rec_date-date).
Use a crosstab using the above query with the above calculated value as column headings.
 
Upvote 0

Forum statistics

Threads
1,221,618
Messages
6,160,873
Members
451,674
Latest member
TJPsmt

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