Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
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
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
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
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
??? 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
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]() 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
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
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
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
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 |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
subtotal function | Excel Programming | |||
Using Subtotal function | Excel Discussion (Misc queries) | |||
Subtotal function not available | Excel Worksheet Functions | |||
Embed a countif function in subtotal function? | Excel Worksheet Functions | |||
How do I nesting subtotal function within average function in Exc | Excel Worksheet Functions |