Charlene,
Put this macro in a VBA module of your file ( Start VB editor with <ALT> +
F11 ; from the menu Insert / module and paste)
Then click on the X (top right) to get back to the "normal" Excel
environment.
From there run the macro ( <ALT> + F8).
Make sure the first (most to the left) sheet contains the date AND that the
cell in the sheets may be overwritten.
Sub FillDates()
Dim Sh As Worksheet
Dim I As Integer
Dim ShName As String
For I = 2 To Worksheets.Count
ShName = Worksheets(I - 1).Name
Worksheets(I).Range("A1").Formula = "=" & ShName & "!A1+1"
Next
End Sub
--
Regards,
Auk Ales
* Please reply to this newsgroup only *
* I will not react on unsolicited e-mails *
Charlene said:
I have a workbook with 31 sheets. I want to put the first date of the
month in Sheet 1 cell A1 and fill the rest of the month's dates in A1 of the
other sheets. I've just switched from Lotus to Excel. I could do it in
Lotus, but haven't figured out how to do it in Excel.