Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
TB
 
Posts: n/a
Default Date Tracking

I have a cell for date entry, every month the cell will be updated. I then
want all the dates entered to be stored in seperate cells on another sheet.
Can I do it?
  #2   Report Post  
Peo Sjoblom
 
Posts: n/a
Default

Maybe you can clarify a little, you haven't gotten any answers and I suspect
it is because nobody understood your question

what are the dates entered to be stored in separate cells on another sheet?

Regards,

Peo Sjoblom

"TB" wrote:

I have a cell for date entry, every month the cell will be updated. I then
want all the dates entered to be stored in seperate cells on another sheet.
Can I do it?

  #3   Report Post  
TB
 
Posts: n/a
Default

Sorry for the confusion. Maybe this will help. A person will perform a task
and then enter the date on sheet 1 cell A1, a month later they will perform
the task again and put new date in sheet 1, cell A1. I want all the dates to
appear on sheet 2, in seperate cells, date 1 -A1, date 2 - A2, and so on.
Does that help or is it still confusing.

"Peo Sjoblom" wrote:

Maybe you can clarify a little, you haven't gotten any answers and I suspect
it is because nobody understood your question

what are the dates entered to be stored in separate cells on another sheet?

Regards,

Peo Sjoblom

"TB" wrote:

I have a cell for date entry, every month the cell will be updated. I then
want all the dates entered to be stored in seperate cells on another sheet.
Can I do it?

  #4   Report Post  
Ken Wright
 
Posts: n/a
Default

In the sheet module of sheet1 (Right click on the tab, choose view code and
paste this in. Change sheet name to suit.

Private Sub Worksheet_Change(ByVal Target As Range)
Set sht = ActiveWorkbook.Sheets("sheet2")

If Target.Address = "$A$1" Then
rw = sht.Cells(Rows.Count, "A").End(xlUp).Row + 1
sht.Range("A" & rw).value = Format(Now(), "dd-mmm-yyyy, hh:mm AM/PM")
End If

End Sub

--
Regards
Ken....................... Microsoft MVP - Excel
Sys Spec - Win XP Pro / XL 97/00/02/03

----------------------------------------------------------------------------
It's easier to beg forgiveness than ask permission :-)
----------------------------------------------------------------------------

"TB" wrote in message
...
Sorry for the confusion. Maybe this will help. A person will perform a

task
and then enter the date on sheet 1 cell A1, a month later they will

perform
the task again and put new date in sheet 1, cell A1. I want all the dates

to
appear on sheet 2, in seperate cells, date 1 -A1, date 2 - A2, and so on.
Does that help or is it still confusing.

"Peo Sjoblom" wrote:

Maybe you can clarify a little, you haven't gotten any answers and I

suspect
it is because nobody understood your question

what are the dates entered to be stored in separate cells on another

sheet?

Regards,

Peo Sjoblom

"TB" wrote:

I have a cell for date entry, every month the cell will be updated. I

then
want all the dates entered to be stored in seperate cells on another

sheet.
Can I do it?



  #5   Report Post  
TB
 
Posts: n/a
Default

THANK YOU
THANK YOU
THANK YOU

"Ken Wright" wrote:

In the sheet module of sheet1 (Right click on the tab, choose view code and
paste this in. Change sheet name to suit.

Private Sub Worksheet_Change(ByVal Target As Range)
Set sht = ActiveWorkbook.Sheets("sheet2")

If Target.Address = "$A$1" Then
rw = sht.Cells(Rows.Count, "A").End(xlUp).Row + 1
sht.Range("A" & rw).value = Format(Now(), "dd-mmm-yyyy, hh:mm AM/PM")
End If

End Sub

--
Regards
Ken....................... Microsoft MVP - Excel
Sys Spec - Win XP Pro / XL 97/00/02/03

----------------------------------------------------------------------------
It's easier to beg forgiveness than ask permission :-)
----------------------------------------------------------------------------

"TB" wrote in message
...
Sorry for the confusion. Maybe this will help. A person will perform a

task
and then enter the date on sheet 1 cell A1, a month later they will

perform
the task again and put new date in sheet 1, cell A1. I want all the dates

to
appear on sheet 2, in seperate cells, date 1 -A1, date 2 - A2, and so on.
Does that help or is it still confusing.

"Peo Sjoblom" wrote:

Maybe you can clarify a little, you haven't gotten any answers and I

suspect
it is because nobody understood your question

what are the dates entered to be stored in separate cells on another

sheet?

Regards,

Peo Sjoblom

"TB" wrote:

I have a cell for date entry, every month the cell will be updated. I

then
want all the dates entered to be stored in seperate cells on another

sheet.
Can I do it?






  #6   Report Post  
Ken Wright
 
Posts: n/a
Default

You're welcome :-)

--
Regards
Ken....................... Microsoft MVP - Excel
Sys Spec - Win XP Pro / XL 97/00/02/03

----------------------------------------------------------------------------
It's easier to beg forgiveness than ask permission :-)
----------------------------------------------------------------------------

"TB" wrote in message
...
THANK YOU
THANK YOU
THANK YOU

"Ken Wright" wrote:

In the sheet module of sheet1 (Right click on the tab, choose view code

and
paste this in. Change sheet name to suit.

Private Sub Worksheet_Change(ByVal Target As Range)
Set sht = ActiveWorkbook.Sheets("sheet2")

If Target.Address = "$A$1" Then
rw = sht.Cells(Rows.Count, "A").End(xlUp).Row + 1
sht.Range("A" & rw).value = Format(Now(), "dd-mmm-yyyy, hh:mm AM/PM")
End If

End Sub

--
Regards
Ken....................... Microsoft MVP - Excel
Sys Spec - Win XP Pro / XL 97/00/02/03


--------------------------------------------------------------------------

--
It's easier to beg forgiveness than ask permission :-)


--------------------------------------------------------------------------

--

"TB" wrote in message
...
Sorry for the confusion. Maybe this will help. A person will perform a

task
and then enter the date on sheet 1 cell A1, a month later they will

perform
the task again and put new date in sheet 1, cell A1. I want all the

dates
to
appear on sheet 2, in seperate cells, date 1 -A1, date 2 - A2, and so

on.
Does that help or is it still confusing.

"Peo Sjoblom" wrote:

Maybe you can clarify a little, you haven't gotten any answers and I

suspect
it is because nobody understood your question

what are the dates entered to be stored in separate cells on another

sheet?

Regards,

Peo Sjoblom

"TB" wrote:

I have a cell for date entry, every month the cell will be

updated. I
then
want all the dates entered to be stored in seperate cells on

another
sheet.
Can I do it?






Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Date updates from worksheet to chart & changes date to a date series! Help!! Jayjg Charts and Charting in Excel 2 January 22nd 05 03:00 PM
Date issue between Windows and Macintosh version dlg1967 Excel Discussion (Misc queries) 4 January 19th 05 03:51 PM
Need help troubleshooting an array formula XLXP on Win2K KR Excel Worksheet Functions 1 December 13th 04 07:41 PM
Addition to Turn cell red if today is greater or equal to date in cell Rich New Users to Excel 2 December 9th 04 02:06 AM
Using formulas to determine date in one cell based on date in anot Gary Excel Worksheet Functions 2 November 22nd 04 08:11 AM


All times are GMT +1. The time now is 08:37 PM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"