View Single Post
 
Old 07-15-2016, 11:36 PM
c991257 c991257 is offline Windows 10 Office 2016
Advanced Beginner
 
Join Date: Mar 2014
Location: Zambia
Posts: 61
c991257 is on a distinguished road
Default

You are trying (in your thought process) to push the data out to the other sheets. That is not possible. You need to pull the data and manipulate it.

You need to have the date in A2 in your first sheet. On the subsequent sheets you use the formula
Sheet 2: =EOMONTH(Sheet1!A2;0)+1
Sheet 3: =EOMONTH(Sheet2!A2;0)+1
etc.

Or alternatively

Sheet 2: =EOMONTH(Sheet1!A2;0)+1
Sheet 3: =EOMONTH(Sheet1!A2;1)+1
etc.

Then you change the format (right-click on each cell and choose properties) to "custom" and enter mmmm as the format.

/Møller

Last edited by c991257; 07-15-2016 at 11:39 PM. Reason: Clarification
Reply With Quote