+ Reply to Thread
Results 1 to 3 of 3

Multiple Drop down sum ifs

Hybrid View

  1. #1
    Registered User
    Join Date
    08-13-2018
    Location
    taylor mill, kentucky
    MS-Off Ver
    2010
    Posts
    61

    Multiple Drop down sum ifs

    Hello All,

    I have this excel worksheet and cannot quite figure out a way to make this work. So on the dashboard I have 3 drop downs. First drops down is in A1, This is 2 letters which is initials, there are 3 different selections here. The second and third drop downs are corresponding to dates, The first one being a start date, and second one being an end date.

    Listed down the worksheet is the name of different products that correlate to jobs. On the other sheets there are todd, lexi, brooke, and this has all the material that is assigned to them under their own worksheets.

    What I am trying to do is populate the estimate and actual that you see on the dashboard into each corresponding cell down the list of products on the dashboard page. This would correspond to the drop downs. So if for example I selected TE in the first drop down, then in the start date I put 6/6/2019, and the third which is end date I put 6/23/2019 then the list below on the dash board would go to Todds page, and find all the estimated material within that date range and list them in the correct spot, then find all the actual numbers for material and list them in that column.

    I have attached the workbook that I am using to make the visual easier.
    Attached Files Attached Files

  2. #2
    Forum Expert Mumps1's Avatar
    Join Date
    10-10-2012
    Location
    Toronto, Canada
    MS-Off Ver
    Excel 2010, 365
    Posts
    8,027

    Re: Multiple Drop down sum ifs

    Copy and paste this macro into the worksheet code module. Do the following: right click the tab name for your Dashboard sheet and click 'View Code'. Paste the macro into the empty code window that opens up. Close the code window to return to your sheet. This macro will be triggered automatically when you make a selection in cell A1 of the Dashboard sheet. So before you make a selection in A1, first select the start and end dates and then make the selection in A1.
    Private Sub Worksheet_Change(ByVal Target As Range)
        If Intersect(Target, Range("A1")) Is Nothing Then Exit Sub
        Application.ScreenUpdating = False
        Dim LastRow As Long, srcWS As Worksheet, ws As Worksheet, desRng As Range, product As Range, fnd As Range
        Dim sDate As String, eDate As String
        sDate = Range("C1")
        eDate = Range("E1")
        LastRow = Cells.Find("*", SearchOrder:=xlByRows, SearchDirection:=xlPrevious).Row
        Set desRng = Range("A3:A" & LastRow)
        Select Case Target.Value
            Case "TE"
                Set srcWS = Sheets("Todd")
            Case "LF"
                Set srcWS = Sheets("Lexi")
            Case "BS1"
                Set srcWS = Sheets("Brooke")
        End Select
        With srcWS.Cells(1).CurrentRegion
            .AutoFilter Field:=4, Criteria1:=">=" & CDate(sDate), Operator:=xlAnd, Criteria2:="<=" & CDate(eDate)
        End With
        For Each product In desRng
            With srcWS.Cells(1).CurrentRegion
                .AutoFilter 2, product
                product.Offset(0, 1).Value = WorksheetFunction.Sum(srcWS.Range("E2", srcWS.Range("E" & srcWS.Rows.Count).End(xlUp)).SpecialCells(xlCellTypeVisible))
                product.Offset(0, 2).Value = WorksheetFunction.Sum(srcWS.Range("F2", srcWS.Range("F" & srcWS.Rows.Count).End(xlUp)).SpecialCells(xlCellTypeVisible))
            End With
        Next product
        srcWS.Cells(1).AutoFilter
        Application.ScreenUpdating = True
    End Sub
    Last edited by Mumps1; 06-28-2019 at 03:19 PM.
    You can say "THANK YOU" for help received by clicking the Star symbol at the bottom left of the helper's post.
    Practice makes perfect. I'm very far from perfect so I'm still practising.

  3. #3
    Forum Expert
    Join Date
    11-27-2007
    Location
    New Jersey, USA
    MS-Off Ver
    2013
    Posts
    1,669

    Re: Multiple Drop down sum ifs

    Here's a solution with formulas.

    Typical formula used:

    HTML Code: 
    Formula is long because I couldn't figure out how to do a vlookup inside the sumproduct. You could possibly use sumifs instead.

    See the attached file with the formulas entered.
    Attached Files Attached Files
    1. Click on the * Add Reputation if you think this helped you
    2. Mark your thread as SOLVED when question is resolved

    Modytrane

+ 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. Replies: 3
    Last Post: 07-21-2013, 07:20 PM
  2. Replies: 0
    Last Post: 04-30-2013, 02:30 PM
  3. Replies: 1
    Last Post: 03-19-2013, 07:03 PM
  4. Multiple drop dependant drop downs in single cell
    By LittleJerry in forum Excel Formulas & Functions
    Replies: 5
    Last Post: 09-07-2012, 02:21 PM
  5. Replies: 1
    Last Post: 08-23-2012, 07:38 PM
  6. Multiple linked drop down lists (Master drop down)
    By zaalibhai in forum Excel General
    Replies: 1
    Last Post: 06-23-2011, 10:51 AM
  7. Dependent Drop Down lists (multiple drop down)
    By jijy in forum Excel Programming / VBA / Macros
    Replies: 4
    Last Post: 08-17-2007, 09:56 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