Help: System Date and Time w/Formula

Batman77

New Member
Joined
Aug 1, 2013
Messages
7
Office Version
  1. 365
Platform
  1. Windows
  2. Mobile
  3. Web
Hi Team,

Is there a way to capture the system date and time by way of formula without it updating each day? Rather than having to use the =Now() function and then copying and pasting it as a value.

Cheers :eek:

 

Excel Facts

How to show all formulas in Excel?
Press Ctrl+` to show all formulas. Press it again to toggle back to numbers. The grave accent is often under the tilde on US keyboards.
Place this Macro in your PERSONAL Worksheet

Open your Macro Menu and select to view macros select the NOW macro and then select options where it says Keyboard Shortcut just hit SHIFT-D then you can just use Cntrl-Shift-D to insert hard code of system time.

Sub NOW()

' Keyboard Shortcut: Ctrl+Shift+D
'


ActiveCell.FormulaR1C1 = "=NOW()"
ActiveCell.Select
Selection.Copy
Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
:=False, Transpose:=False
Application.CutCopyMode = False
ActiveCell.Select
End Sub
 
Last edited:
Upvote 0
Hi Latchmaker,

Appreciate the response as it works great!

Thank you :p
 
Upvote 0
or without vba...

press CTRL+;
press SPACE
press CTRL+SHIFT+;
 
Upvote 0

Forum statistics

Threads
1,215,473
Messages
6,125,018
Members
449,203
Latest member
tungnmqn90

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