new day in next worksheet Day 1 plus 1?

G

Guest

add the value to a date in 1st worksheet to the value in the date in the new
work sheet.
using a macro function
I would like to add a new worksheet and use the date value in the previous
sheet with an increment of 1.
So make worksheet with sunday jan 1 in cell a1 and add a new worksheet so
monday jan 2 is in cell a1 wksht 2.

make newsheet (lastsheet(a1)+1) ???????
 
G

Guest

Sub bumpit()
Sheets("Sheet2").Range("A1").Value = Sheets("Sheet1").Range("A1").Value + 1
End Sub
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top