+ Reply to Thread
Results 1 to 2 of 2

I want to add a group of cells, using a sumif of another group of.

Hybrid View

  1. #1
    larrylab
    Guest

    I want to add a group of cells, using a sumif of another group of.

    I want to add a group of cells, using a sumif of another group of cells.
    Such as if A1,B1, D1 is equal to 3.5 add A2 to the sum of cells

  2. #2
    Tom Ogilvy
    Guest

    Re: I want to add a group of cells, using a sumif of another group of.

    Dim dblSum as Double
    dblSum = application.Round(application.Sum(range("A1:B1,D1")),1)
    if abs(dblSum-3.5) < .00000001 then
    dblSum = dblSum + Range("A2")
    End if

    --
    Regards,
    Tom Ogilvy

    "larrylab" <larrylab@discussions.microsoft.com> wrote in message
    news:42FFCDB5-E7B6-4B71-9105-8D5676B819A9@microsoft.com...
    > I want to add a group of cells, using a sumif of another group of cells.
    > Such as if A1,B1, D1 is equal to 3.5 add A2 to the sum of cells




+ 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