Date linkage

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi everybody. thanks in advance for helping me. I a workbook with 2 sheets.
the first sheets I need to key the figure of report, and the second sheet is
showing when the report submitted. Let say if I want to key in the figure in
report and automatically the date is pop-up on the second sheet, it is
possible to do it? If yes,how?
thanks again
 
You can use VLOOKUP for this, or an INDEX/MATCH combination - both
described in Excel Help.

Hope this helps.

Pete
 
You could use event code.

Private Sub Worksheet_Change(ByVal Target As Excel.Range)
On Error GoTo enditall
Application.EnableEvents = False
If Not Application.Intersect(Range("A1:A10"), Target) Is Nothing Then
n = Target.Row
If Me.Range("A" & n).Value <> "" Then
Sheets("Sheet2").Range("B" & n).Value = Now
End If
End If
enditall:
Application.EnableEvents = True
End Sub

When you type something in Sheet1 A1:A10 the date/time will be entered into
Sheet2 column B

Right-click on the Sheet1 tab and "View Code"

Copy/paste into that sheet module.


Gord Dibben MS Excel MVP
 
Back
Top