+ Reply to Thread
Results 1 to 6 of 6

Counting Variables in Two Columns

Hybrid View

  1. #1
    Registered User
    Join Date
    09-19-2012
    Location
    Anaheim, California
    MS-Off Ver
    Excel 2010
    Posts
    22

    Cool Counting Variables in Two Columns

    I need some VBA code (not formulas) for Excel that can count when two different variables in two different columns are in the same row. For example, I would like to count how many times "Fish" in Column A appears in the same row as "Tank" in column B. Any help would be greatly appreciated. Thank you!

  2. #2
    Registered User
    Join Date
    09-19-2012
    Location
    Anaheim, California
    MS-Off Ver
    Excel 2010
    Posts
    22

    Re: Counting Variables in Two Columns

    Bump.
    Is this not possible without formulas?

  3. #3
    Forum Guru xladept's Avatar
    Join Date
    04-14-2012
    Location
    Pasadena, California
    MS-Off Ver
    Excel 2003,2010
    Posts
    12,378

    Re: Counting Variables in Two Columns

    Hi msolari,

    It's not very fancy:

    Sub FishTank()
    Dim c As Long, eA As Long, eB As Long, e As Long, i As Long
    eA = Range("A" & Rows.Count).End(xlUp).Row: e = eA
    eB = Range("B" & Rows.Count).End(xlUp).Row
    If eA > eB Then e = eB
    For i = 1 To e
    If Range("A" & i) = "Fish" And Range("B" & i) = "Tank" Then c = c + 1
    Next i
    MsgBox ("there are " & c & " fish tanks")
    End Sub
    If I've helped you, please consider adding to my reputation - just click on the liitle star at the left.

    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~(Pride has no aftertaste.)

    You can't do one thing. XLAdept

    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~aka Orrin

  4. #4
    Registered User
    Join Date
    09-19-2012
    Location
    Anaheim, California
    MS-Off Ver
    Excel 2010
    Posts
    22

    Re: Counting Variables in Two Columns

    Thank you xladept. Works great! Thanks for the prompt response.

  5. #5
    Forum Guru xladept's Avatar
    Join Date
    04-14-2012
    Location
    Pasadena, California
    MS-Off Ver
    Excel 2003,2010
    Posts
    12,378

    Re: Counting Variables in Two Columns

    You're welcome!

  6. #6
    Forum Expert Cutter's Avatar
    Join Date
    05-24-2004
    Location
    Ontario,Canada
    MS-Off Ver
    Excel 2010
    Posts
    6,451

    Re: Counting Variables in Two Columns

    @ msolari

    Welcome to the forum.

    Based on your last post it seems that you are satisfied with the solution(s) you've received but you haven't marked your thread as SOLVED. I'll do that for you now but please keep in mind for your future threads that Rule #9 requires you to do that yourself. If your problem has not been solved you can use Thread Tools (located above your first post) and choose "Mark this thread as unsolved".
    Thanks.

    Also, as a new member of the forum, you may not be aware that you can thank those who have helped you by clicking the small star icon located in the lower left corner of the post in which the help was given. By doing so you can add to the reputation(s) of those who helped.

+ Reply to Thread

Thread Information

Users Browsing this Thread

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

Tags for this Thread

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