Link to home
Create AccountLog in
Avatar of troyhalsey
troyhalsey

asked on

Using Today without Updating after first use

I have script that creates a worksheet and a range of dates based the Today() function.  But I don't what the start date to update everyday.  So how do I start the range using the date the worksheet was created without it updating each day?

Troy

Avatar of Patrick Matthews
Patrick Matthews
Flag of United States of America image

Hi troy,

Instead of sticking a formula in there, just stick in a value:

Cells(r, c) = Date
Cells(r + 1, c) = Date + 1
Cells(r + 2, c) = Date + 2
etc.

Regards,

Patrick
Avatar of troyhalsey
troyhalsey

ASKER

I don't think that is what I want....I need the first cell in the range "B1"...when created to equal Today()....but then I want the date to stay regardless of the actual date.  Know what I mean?

Troy
ASKER CERTIFIED SOLUTION
Avatar of Patrick Matthews
Patrick Matthews
Flag of United States of America image

Link to home
membership
Create a free account to see this answer
Signing up is free and takes 30 seconds. No credit card required.
See answer
I gotcha....sweet thanks man!

Troy
You're most welcome :)