Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 12
Default Command Button Ctrl+Alt+Shift_F9


I would like to place a Command Button in an excel worksheet so that pressing
it would be the same as pressing 'Ctrl+Alt+Shift+F9'

Thank you
  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 1,565
Default Command Button Ctrl+Alt+Shift_F9


And what does Ctrl+Alt+Shift+F9 do? I have not memorized all of the
keyboard combinations yet.



"Lonnie" wrote in message
...
I would like to place a Command Button in an excel worksheet so that
pressing
it would be the same as pressing 'Ctrl+Alt+Shift+F9'

Thank you



  #3   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 1,565
Default Command Button Ctrl+Alt+Shift_F9


I found it:

Rechecks dependent formulas and then calculates all cells in all open
workbooks, including cells not marked as needing to be calculated.

Maybe somebody will take the time to create a macro that is redundant to
this.





"Lonnie" wrote in message
...
I would like to place a Command Button in an excel worksheet so that
pressing
it would be the same as pressing 'Ctrl+Alt+Shift+F9'

Thank you



  #4   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 35,218
Default Command Button Ctrl+Alt+Shift_F9


That sounds like
Application.CalculateFullRebuild
(xl2003 or greater?????)

For all open workbooks, forces a full calculation of the data and rebuilds the
dependencies.

====
If that's not right, maybe just using application.sendkeys would be
sufficient????



JLGWhiz wrote:

I found it:

Rechecks dependent formulas and then calculates all cells in all open
workbooks, including cells not marked as needing to be calculated.

Maybe somebody will take the time to create a macro that is redundant to
this.

"Lonnie" wrote in message
...
I would like to place a Command Button in an excel worksheet so that
pressing
it would be the same as pressing 'Ctrl+Alt+Shift+F9'

Thank you


--

Dave Peterson
  #5   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 1,565
Default Command Button Ctrl+Alt+Shift_F9


That might do it. I am trying to figure out the difference in the amount of
effort it takes to press Ctrl+Alt+Shift+F9 and clicking a button.


"Dave Peterson" wrote in message
...
That sounds like
Application.CalculateFullRebuild
(xl2003 or greater?????)

For all open workbooks, forces a full calculation of the data and rebuilds
the
dependencies.

====
If that's not right, maybe just using application.sendkeys would be
sufficient????



JLGWhiz wrote:

I found it:

Rechecks dependent formulas and then calculates all cells in all open
workbooks, including cells not marked as needing to be calculated.

Maybe somebody will take the time to create a macro that is redundant to
this.

"Lonnie" wrote in message
...
I would like to place a Command Button in an excel worksheet so that
pressing
it would be the same as pressing 'Ctrl+Alt+Shift+F9'

Thank you


--

Dave Peterson





  #6   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 5,934
Default Command Button Ctrl+Alt+Shift_F9


My guess would be the 4-finger Ctrl+Alt+Shift+F9 combination is somewhat
cumbersome, a simple mouse click isn't.

--
Rick (MVP - Excel)


"JLGWhiz" wrote in message
...
That might do it. I am trying to figure out the difference in the amount
of effort it takes to press Ctrl+Alt+Shift+F9 and clicking a button.


"Dave Peterson" wrote in message
...
That sounds like
Application.CalculateFullRebuild
(xl2003 or greater?????)

For all open workbooks, forces a full calculation of the data and
rebuilds the
dependencies.

====
If that's not right, maybe just using application.sendkeys would be
sufficient????



JLGWhiz wrote:

I found it:

Rechecks dependent formulas and then calculates all cells in all open
workbooks, including cells not marked as needing to be calculated.

Maybe somebody will take the time to create a macro that is redundant to
this.

"Lonnie" wrote in message
...
I would like to place a Command Button in an excel worksheet so that
pressing
it would be the same as pressing 'Ctrl+Alt+Shift+F9'

Thank you


--

Dave Peterson




  #7   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 35,218
Default Command Button Ctrl+Alt+Shift_F9

On the other hand, I can't remember ever using either the code or the shortcut
key.



Rick Rothstein wrote:

My guess would be the 4-finger Ctrl+Alt+Shift+F9 combination is somewhat
cumbersome, a simple mouse click isn't.

--
Rick (MVP - Excel)

"JLGWhiz" wrote in message
...
That might do it. I am trying to figure out the difference in the amount
of effort it takes to press Ctrl+Alt+Shift+F9 and clicking a button.


"Dave Peterson" wrote in message
...
That sounds like
Application.CalculateFullRebuild
(xl2003 or greater?????)

For all open workbooks, forces a full calculation of the data and
rebuilds the
dependencies.

====
If that's not right, maybe just using application.sendkeys would be
sufficient????



JLGWhiz wrote:

I found it:

Rechecks dependent formulas and then calculates all cells in all open
workbooks, including cells not marked as needing to be calculated.

Maybe somebody will take the time to create a macro that is redundant to
this.

"Lonnie" wrote in message
...
I would like to place a Command Button in an excel worksheet so that
pressing
it would be the same as pressing 'Ctrl+Alt+Shift+F9'

Thank you

--

Dave Peterson




--

Dave Peterson
  #8   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 12
Default Command Button Ctrl+Alt+Shift_F9


Thank you for the suggestion it works great.

To answer JLGWhiz's post: The workbooks will go to a client. I figured it
would be easier to place an 'Update Data' button on the worksheet than write
text in a cell that says: "To update data press Ctrl+Alt+Shift+F9".

"Dave Peterson" wrote:

That sounds like
Application.CalculateFullRebuild
(xl2003 or greater?????)

For all open workbooks, forces a full calculation of the data and rebuilds the
dependencies.

====
If that's not right, maybe just using application.sendkeys would be
sufficient????



JLGWhiz wrote:

I found it:

Rechecks dependent formulas and then calculates all cells in all open
workbooks, including cells not marked as needing to be calculated.

Maybe somebody will take the time to create a macro that is redundant to
this.

"Lonnie" wrote in message
...
I would like to place a Command Button in an excel worksheet so that
pressing
it would be the same as pressing 'Ctrl+Alt+Shift+F9'

Thank you


--

Dave Peterson

  #9   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 1,565
Default Command Button Ctrl+Alt+Shift_F9


Hi Lonnie, That makes sense to do a little human engineering on the user.
Posting the objective will always get you an quicker and better solution.



"Lonnie" wrote in message
...
Thank you for the suggestion it works great.

To answer JLGWhiz's post: The workbooks will go to a client. I figured it
would be easier to place an 'Update Data' button on the worksheet than
write
text in a cell that says: "To update data press Ctrl+Alt+Shift+F9".

"Dave Peterson" wrote:

That sounds like
Application.CalculateFullRebuild
(xl2003 or greater?????)

For all open workbooks, forces a full calculation of the data and
rebuilds the
dependencies.

====
If that's not right, maybe just using application.sendkeys would be
sufficient????



JLGWhiz wrote:

I found it:

Rechecks dependent formulas and then calculates all cells in all open
workbooks, including cells not marked as needing to be calculated.

Maybe somebody will take the time to create a macro that is redundant
to
this.

"Lonnie" wrote in message
...
I would like to place a Command Button in an excel worksheet so that
pressing
it would be the same as pressing 'Ctrl+Alt+Shift+F9'

Thank you


--

Dave Peterson



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
ctrl+F command pierre Excel Discussion (Misc queries) 1 May 11th 10 09:14 PM
Stop running macro button, like Ctrl-Break button h2fcell Excel Programming 8 January 23rd 09 04:01 PM
Stop running macro button, like Ctrl-Break button Dave Peterson Excel Programming 1 January 22nd 09 05:23 PM
Stop running macro button, like Ctrl-Break button Ronald R. Dodge, Jr.[_2_] Excel Programming 0 January 22nd 09 04:59 PM
Deselect Command Button by Selecting another Command Button gmcnaugh[_2_] Excel Programming 3 September 2nd 08 05:59 PM


All times are GMT +1. The time now is 10:22 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"