VBA code to put a timestamp in another sheet

Verelst_Jan

New Member
Joined
Aug 17, 2024
Messages
3
Office Version
  1. 365
Platform
  1. Windows
Hello,

I like to create a vba code that will fill in the date and time when you press it into another sheet. I wanne create one dashboard with buttons that will fill in the date in different sheets.
This i what i already found but this will fill it in the same sheet and cannot find how to change it. These is my first time with VBA :-)


Private Sub Airlock_1()

Sheet1.Range("A9").Select
ActiveCell.EntireRow.Insert shift:=xlDown

Sheet1.Range("A10").Select
ActiveCell.Formula = Date

Sheet1.Range("B10").Select
ActiveCell.Formula = Time

End Sub

1723888792711.png


1723888946481.png



Regards,
Jan
 

Excel Facts

What is the shortcut key for Format Selection?
Ctrl+1 (the number one) will open the Format dialog for whatever is selected.
Assuming you want to do the same as in your example being the latest date in Row 2 then see if this works for you:

Rich (BB code):
Private Sub Airlock_1()

    Dim rngAirlock As Range
    Set rngAirlock = Sheets("Airlocks").Range("A2") ' Change the column for each Airlock
    
    rngAirlock.Insert CopyOrigin:=xlFormatFromRightOrBelow
    rngAirlock.Offset(-1).Value2 = Now

End Sub
 
Upvote 0

Forum statistics

Threads
1,223,228
Messages
6,170,871
Members
452,363
Latest member
merico17

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top