Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 389
Default Subtotal Function

I would like to start the function:
=Subtotal(9,
and then have the system wait for my highlighting of the cells and then I
hit ENTER and it will accept the formula.

Is that possible?

Thank you,

Steven
  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 2,420
Default Subtotal Function

Is that what happens by default?

--
__________________________________
HTH

Bob

"Steven" wrote in message
...
I would like to start the function:
=Subtotal(9,
and then have the system wait for my highlighting of the cells and then I
hit ENTER and it will accept the formula.

Is that possible?

Thank you,

Steven



  #3   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 5,934
Default Subtotal Function

??? Excel works that way now (at least on my XL2003 version)... right after
you type the comma, just click/drag the range you want and then hit the
Enter key.

--
Rick (MVP - Excel)


"Steven" wrote in message
...
I would like to start the function:
=Subtotal(9,
and then have the system wait for my highlighting of the cells and then I
hit ENTER and it will accept the formula.

Is that possible?

Thank you,

Steven


  #4   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 389
Default Subtotal Function


I want to do it in a macro and set a shortcut key so I do not actually have
to type the: =Subtotal(9,

I just want to hit the shortcut key and then highlight ....... and hit ENTER.

Thank you


"Rick Rothstein" wrote:

??? Excel works that way now (at least on my XL2003 version)... right after
you type the comma, just click/drag the range you want and then hit the
Enter key.

--
Rick (MVP - Excel)


"Steven" wrote in message
...
I would like to start the function:
=Subtotal(9,
and then have the system wait for my highlighting of the cells and then I
hit ENTER and it will accept the formula.

Is that possible?

Thank you,

Steven



  #5   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 5,934
Default Subtotal Function

Perhaps this will suffice instead...

Dim R As Range
Set R = Application.InputBox("Select a range to subtotal..", Type:=8)
ActiveCell.Formula = "=SUBTOTAL(9," & R.Address & ")"

--
Rick (MVP - Excel)


"Steven" wrote in message
...

I want to do it in a macro and set a shortcut key so I do not actually
have
to type the: =Subtotal(9,

I just want to hit the shortcut key and then highlight ....... and hit
ENTER.

Thank you


"Rick Rothstein" wrote:

??? Excel works that way now (at least on my XL2003 version)... right
after
you type the comma, just click/drag the range you want and then hit the
Enter key.

--
Rick (MVP - Excel)


"Steven" wrote in message
...
I would like to start the function:
=Subtotal(9,
and then have the system wait for my highlighting of the cells and then
I
hit ENTER and it will accept the formula.

Is that possible?

Thank you,

Steven






  #6   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 389
Default Subtotal Function

Thank you very much. It seems like a little thing but I am so tired of
typing =Subtotal(9,.........) and I do not like using =Sum() that much
anymore. This will save me 5 seconds each time I have to use an =Subtotal()
and will trememdous brain stress. Thanks again.

"Rick Rothstein" wrote:

Perhaps this will suffice instead...

Dim R As Range
Set R = Application.InputBox("Select a range to subtotal..", Type:=8)
ActiveCell.Formula = "=SUBTOTAL(9," & R.Address & ")"

--
Rick (MVP - Excel)


"Steven" wrote in message
...

I want to do it in a macro and set a shortcut key so I do not actually
have
to type the: =Subtotal(9,

I just want to hit the shortcut key and then highlight ....... and hit
ENTER.

Thank you


"Rick Rothstein" wrote:

??? Excel works that way now (at least on my XL2003 version)... right
after
you type the comma, just click/drag the range you want and then hit the
Enter key.

--
Rick (MVP - Excel)


"Steven" wrote in message
...
I would like to start the function:
=Subtotal(9,
and then have the system wait for my highlighting of the cells and then
I
hit ENTER and it will accept the formula.

Is that possible?

Thank you,

Steven




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
subtotal function Greg Excel Programming 2 January 24th 09 10:08 PM
Using Subtotal function Usman Meer Excel Discussion (Misc queries) 0 January 16th 09 02:29 PM
Subtotal function not available Graeme Excel Worksheet Functions 3 January 8th 08 10:53 PM
Embed a countif function in subtotal function? Stuck at work Excel Worksheet Functions 1 February 14th 06 03:19 AM
How do I nesting subtotal function within average function in Exc Amy Yeh Excel Worksheet Functions 4 January 19th 05 06:23 PM


All times are GMT +1. The time now is 02:23 AM.

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

About Us

"It's about Microsoft Excel"