+ Reply to Thread
Results 1 to 8 of 8

Help! Select blank cell in a filtered list

Hybrid View

  1. #1
    Registered User
    Join Date
    10-05-2013
    Location
    Chicago, IL
    MS-Off Ver
    Excel 2010
    Posts
    1

    Re: Help! Select blank cell in a filtered list

    If you don't want to use PV Tables, you could try something like:

    dim rngClient, rngAmount as Range
    dim n as integer

    set rngClient = Activeworkbook.Activeworksheet.Range("A:A")
    set rngAmount = Activeworkbook.Activeworksheet.Range("B:B")

    n = Activeworkbook.Activeworksheet.UsedRange.Rows().Count + 3

    rngClient.Rows(n).Value = "Total"
    rngAmount.Rows(n).Value = [Your filtered sum]

    This should get you to where you can start entering data 3 rows after the used range.

    *changed to usedrange.rows() for n
    Last edited by aylerk; 10-05-2013 at 11:57 AM.

+ Reply to Thread

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. [SOLVED] Macro to select visible rows containg data in filtered list
    By knevil in forum Excel Programming / VBA / Macros
    Replies: 8
    Last Post: 07-15-2013, 01:22 PM
  2. [SOLVED] Selecting a range of blank cells in a filtered list
    By mike_vr in forum Excel Programming / VBA / Macros
    Replies: 2
    Last Post: 07-05-2013, 06:24 AM
  3. Replies: 3
    Last Post: 04-11-2013, 04:13 AM
  4. Select the first cell of a filtered list?
    By Shane Moore in forum Excel Formulas & Functions
    Replies: 3
    Last Post: 01-22-2010, 03:18 PM
  5. [SOLVED] Select data in filtered list
    By Stephen Rainey in forum Excel General
    Replies: 2
    Last Post: 07-28-2006, 07:40 AM

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