Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Hi
I am putting together a time sheet to record working times from week to week, I have a cell that contains the week ending date using the following formula: =TODAY()-WEEKDAY(TODAY(),2)+7 I need to make this cell only update if the file is saved, basically so that if I open an old timesheet from say last week it wont change the week ending date to this weeks. Does that make sense?? lol Hope someone can help |
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
The only way to do that is to convert the formula to a value before saving...
i.e Copy and then Paste Special | Values You can record a macro while doing that and then run that macro whenever you want... ------------------------------------- Pl. click ''''Yes'''' if this was helpful... "Nelix" wrote: Hi I am putting together a time sheet to record working times from week to week, I have a cell that contains the week ending date using the following formula: =TODAY()-WEEKDAY(TODAY(),2)+7 I need to make this cell only update if the file is saved, basically so that if I open an old timesheet from say last week it wont change the week ending date to this weeks. Does that make sense?? lol Hope someone can help |
#3
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Hello,
Private Sub Workbook_BeforeSave(ByVal SaveAsUI As Boolean, Cancel As Boolean) Range("A1") = Application.WorksheetFunction.Floor(CLng(Date) + 5, 7) + 1 End Sub Regards, Bernd |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Convert regular Date to Week Ending or Week Beginning Dates | Excel Discussion (Misc queries) | |||
week ending | Excel Worksheet Functions | |||
Week Ending formula | Excel Discussion (Misc queries) | |||
AVG row of data by Week ending | Excel Discussion (Misc queries) | |||
Week ending | Excel Worksheet Functions |