Formulas Help Please!

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

Guest

if a4 has data of any kind how can i get f4 to Put the current time in it
hour:min:PM not with date
to view work book i am working to understand it more at
http://yourprintinghq.com/Payment.xls
it has comments on it for the formulas i am looking for

Thanx,
Paul M.
 
just right click the sheet tab>view code>insert this>SAVE.

Private Sub Worksheet_Change(ByVal Target As Range)
If target.row<4 or Target.Column <> 2 Then Exit Sub
Target.Offset(0, 4) = Time
End Sub
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top