Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.newusers
BrianT
 
Posts: n/a
Default Make a 'Print button'


How would I make a cell into a 'print button' (radio button?)

I need to be able to mouseover and either click or press enter on a
cell, and doing so would cause a range of other cells to be printed. So
cell A1 would be my button, click on it or hit enter once it was
highlighted and it would print cells D10-x41 say.


--
BrianT
------------------------------------------------------------------------
BrianT's Profile: http://www.excelforum.com/member.php...o&userid=35954
View this thread: http://www.excelforum.com/showthread...hreadid=557438

  #2   Report Post  
Posted to microsoft.public.excel.newusers
Ron de Bruin
 
Posts: n/a
Default Make a 'Print button'

Try this event

Copy it in the sheet module
If you select A1 it print the range

Private Sub Worksheet_SelectionChange(ByVal Target As Range)
If Not Application.Intersect(Range("A1"), Target) Is Nothing Then
Range("D10:X41").PrintOut
End If
End Sub


--
Regards Ron de Bruin
http://www.rondebruin.nl



"BrianT" wrote in message
...

How would I make a cell into a 'print button' (radio button?)

I need to be able to mouseover and either click or press enter on a
cell, and doing so would cause a range of other cells to be printed. So
cell A1 would be my button, click on it or hit enter once it was
highlighted and it would print cells D10-x41 say.


--
BrianT
------------------------------------------------------------------------
BrianT's Profile: http://www.excelforum.com/member.php...o&userid=35954
View this thread: http://www.excelforum.com/showthread...hreadid=557438



  #3   Report Post  
Posted to microsoft.public.excel.newusers
BrianT
 
Posts: n/a
Default Make a 'Print button'


Thank you my friend, I shall give it a try tomorrow


--
BrianT
------------------------------------------------------------------------
BrianT's Profile: http://www.excelforum.com/member.php...o&userid=35954
View this thread: http://www.excelforum.com/showthread...hreadid=557438

Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
we need to make it print one copy, not three Paul Sekula Excel Worksheet Functions 0 April 26th 06 09:10 PM
how do I make rows and columns appear when I print a spreadsheet Debbie Excel Worksheet Functions 3 November 17th 05 01:08 PM
Is it possible to make a Button on a tool bar to launch an Add-in Wolf Excel Discussion (Misc queries) 1 June 24th 05 12:13 AM
Second option button disappears when I make another column Monique Excel Worksheet Functions 0 March 9th 05 09:57 PM
make first few rows print on every page? CD New Users to Excel 3 January 3rd 05 06:07 AM


All times are GMT +1. The time now is 06:16 PM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"