Automatically Print Sheet using Worksheet SelectionChange Macro

eddieg

New Member
Joined
Jun 28, 2024
Messages
4
Office Version
  1. 2010
Platform
  1. Windows
I would like to enter the date in cell J2, hit enter, and have the sheet select J2 again, and print the sheet. I had this code once, lost it, and of course can't figure it out. thank you.
 

Excel Facts

What is the shortcut key for Format Selection?
Ctrl+1 (the number one) will open the Format dialog for whatever is selected.
If you enter today's date in the range("J2")
This script will run.
I had it give you a message box popup
Change this to the print code you want.

Excel Formula:
Private Sub Worksheet_Change(ByVal Target As Range)
If Target.Address = "$J$2" And Target.Value = Date Then
MsgBox "Put you print code here"
End If
End Sub
 
Upvote 0

Forum statistics

Threads
1,220,965
Messages
6,157,119
Members
451,398
Latest member
rjsteward

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