A family of Microsoft spreadsheet software with tools for analyzing, charting, and communicating data.
Yes. Assuming there is a sequence to the worksheets that also remains constant. For the example, sheet names are simply Sheet1 through Sheet31, with Sheet1 being the first one. Date goes into cell A1 of each sheet.
Enter a date into A1 of Sheet1, then working through the sheets in sequence (Sheet2, Sheet3, ... Sheet31) you put in a formula referencing the previous sheet in the sequence into cell A1. In Sheet2, the formula would be
=Sheet1!A1+1
for Sheet3, the formula would be
=Sheet2+A1
and in Sheet31, the formula would be
=Sheet30+1
Alternatively, you could work through the sheets in sequence, changing the number of days to add, as:
in A1 of Sheet2, it is still
=Sheet1!A1+1
then in Sheet3 it would be
=Sheet1!A1+2
in Sheet4 it would be
=Sheet1!A1+3
on to Sheet31 where it would be
=Sheet1!A1+30
It's a little work to do up front, but since you're using a 'template' workbook, you only have to get it right once and it's a done deal forever.
Hope this helps.