+ Reply to Thread
Results 1 to 6 of 6

counting cells in a range

  1. #1
    Charles
    Guest

    counting cells in a range

    hi, I saw in other persons when has a range marked with the mouse, appear the
    cells quantity that has the range,
    how is the way to obtain it in my excel, maybe an option in option menu, but
    i couldnt found....
    any help me ?
    thanks


  2. #2
    galimi
    Guest

    RE: counting cells in a range

    Charles,

    From VBE, in the immediate window, you could type selection.count to find
    the total number of cells selected in a range

    http://HelpExcel.com

    "Charles" wrote:

    > hi, I saw in other persons when has a range marked with the mouse, appear the
    > cells quantity that has the range,
    > how is the way to obtain it in my excel, maybe an option in option menu, but
    > i couldnt found....
    > any help me ?
    > thanks
    >


  3. #3
    Charles
    Guest

    RE: counting cells in a range

    thank galimi, but I refered without use VBE,
    Is there not an option from excel menu ? because the person that I saw I
    know dont use VBE


    "galimi" wrote:

    > Charles,
    >
    > From VBE, in the immediate window, you could type selection.count to find
    > the total number of cells selected in a range
    >
    > http://HelpExcel.com
    >
    > "Charles" wrote:
    >
    > > hi, I saw in other persons when has a range marked with the mouse, appear the
    > > cells quantity that has the range,
    > > how is the way to obtain it in my excel, maybe an option in option menu, but
    > > i couldnt found....
    > > any help me ?
    > > thanks
    > >


  4. #4
    galimi
    Guest

    RE: counting cells in a range

    You can add the following code to the workbook_selectionchange event

    Private Sub Workbook_SheetSelectionChange(ByVal Sh As Object, ByVal Target
    As Range)
    Application.StatusBar = Target.Cells.Count
    End Sub

    This will put the cell count on the Status Bar. To enhance this further,
    you could create an addin that monitors ALL Workbook Selection Changes using
    the WithEvents keyword to make it work for ALL workbooks.

    http://HelpExcel.com

    "Charles" wrote:

    > thank galimi, but I refered without use VBE,
    > Is there not an option from excel menu ? because the person that I saw I
    > know dont use VBE
    >
    >
    > "galimi" wrote:
    >
    > > Charles,
    > >
    > > From VBE, in the immediate window, you could type selection.count to find
    > > the total number of cells selected in a range
    > >
    > > http://HelpExcel.com
    > >
    > > "Charles" wrote:
    > >
    > > > hi, I saw in other persons when has a range marked with the mouse, appear the
    > > > cells quantity that has the range,
    > > > how is the way to obtain it in my excel, maybe an option in option menu, but
    > > > i couldnt found....
    > > > any help me ?
    > > > thanks
    > > >


  5. #5
    IanRoy
    Guest

    RE: counting cells in a range

    Hi, Charles;
    Right click the Status Bar at the bottom of your Excel window. Choose
    "Count." If you don't see the Status Bar, go to "View" on the Menu Bar, and
    check "Status Bar."
    Regards,
    Ian.

    "Charles" wrote:

    > thank galimi, but I refered without use VBE,
    > Is there not an option from excel menu ? because the person that I saw I
    > know dont use VBE
    >
    >
    > "galimi" wrote:
    >
    > > Charles,
    > >
    > > From VBE, in the immediate window, you could type selection.count to find
    > > the total number of cells selected in a range
    > >
    > > http://HelpExcel.com
    > >
    > > "Charles" wrote:
    > >
    > > > hi, I saw in other persons when has a range marked with the mouse, appear the
    > > > cells quantity that has the range,
    > > > how is the way to obtain it in my excel, maybe an option in option menu, but
    > > > i couldnt found....
    > > > any help me ?
    > > > thanks
    > > >


  6. #6
    Dave Peterson
    Guest

    Re: counting cells in a range

    And just in case that statusbar isn't visible:

    Tools|options|view tab
    check statusbar



    IanRoy wrote:
    >
    > Hi, Charles;
    > Right click the Status Bar at the bottom of your Excel window. Choose
    > "Count." If you don't see the Status Bar, go to "View" on the Menu Bar, and
    > check "Status Bar."
    > Regards,
    > Ian.
    >
    > "Charles" wrote:
    >
    > > thank galimi, but I refered without use VBE,
    > > Is there not an option from excel menu ? because the person that I saw I
    > > know dont use VBE
    > >
    > >
    > > "galimi" wrote:
    > >
    > > > Charles,
    > > >
    > > > From VBE, in the immediate window, you could type selection.count to find
    > > > the total number of cells selected in a range
    > > >
    > > > http://HelpExcel.com
    > > >
    > > > "Charles" wrote:
    > > >
    > > > > hi, I saw in other persons when has a range marked with the mouse, appear the
    > > > > cells quantity that has the range,
    > > > > how is the way to obtain it in my excel, maybe an option in option menu, but
    > > > > i couldnt found....
    > > > > any help me ?
    > > > > thanks
    > > > >


    --

    Dave Peterson

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1