+ Reply to Thread
Results 1 to 10 of 10

Inconsistent Mapping Requirements Within Data Set

Hybrid View

  1. #1
    Registered User
    Join Date
    07-28-2015
    Location
    NYC
    MS-Off Ver
    2013
    Posts
    2

    Inconsistent Mapping Requirements Within Data Set

    Hi, I need to find a way to simply map data from a table to a series of reports. Normally, this would be accomplishable through a simple SUMIFS, but the requirement is a bit more complicated. I want to create two reports. One for Business A and one for Business B.

    Attached is a file containing a data set, mapping table and two example reports.

    If a VLOOKUP or INDEX/MATCH are used to look up the Business into the data tab using Group, Group 1 will only associate with Business A and not Business B, since the lookup will find and pull the first value.

    Note that the data set and mapping tables that are being used in reality are very large and change often. The above is an example. The issue being highlighted occurs several times within the mapping table / report requirements. As such, I'm trying to keep the file size limited and the model dynamic, so a solution which duplicates the data within the data set and requires entering a static index number next to each row is not ideal.

    Are there any thoughts on a simple system to map the data into the reports given these requirements?

    Thanks!
    Attached Files Attached Files

  2. #2
    Valued Forum Contributor quekbc's Avatar
    Join Date
    01-18-2010
    Location
    Sydney, Australia
    MS-Off Ver
    2010, 2013, 2016
    Posts
    1,149

    Re: Inconsistent Mapping Requirements Within Data Set

    This was fun.


    Formula: copy to clipboard
    Business A, N6: =SUM(SUMIFS(D$4:D$15,$B$4:$B$15,IF($J$4:$J$7=$M$4,$K$4:$K$7),$C$4:$C$15,$M6))
    Business B, U6: =SUM(SUMIFS(D$4:D$15,$B$4:$B$15,IF($J$4:$J$7=$T$4,$K$4:$K$7),$C$4:$C$15,$T6))

    NOTE: This is an array formula, as such, please type in the formula and press CTRL SHIFT ENTER.

    Or see attached.
    Attached Files Attached Files
    Last edited by quekbc; 07-29-2015 at 09:22 AM. Reason: Business B formula was copied incorrectly. Thanks JeteMc!

  3. #3
    Forum Guru samba_ravi's Avatar
    Join Date
    07-26-2011
    Location
    Hyderabad, India
    MS-Off Ver
    Excel 2021
    Posts
    8,939

    Re: Inconsistent Mapping Requirements Within Data Set

    Nice one Quekbc
    or try
    below array formula
    =SUM(SUMIFS(D$4:D$15,$B$4:$B$15,$K$4:$K$7,$C$4:$C$15,$M6)*($J$4:$J$7=$M$4))
    =SUM(SUMIFS(D$4:D$15,$B$4:$B$15,$K$4:$K$7,$C$4:$C$15,$M6)*($J$4:$J$7=$M$4))
    try this and copy across
    Samba

    Say thanks to those who have helped you by clicking Add Reputation star.

  4. #4
    Valued Forum Contributor
    Join Date
    09-17-2012
    Location
    Johannesburg, South Africa
    MS-Off Ver
    Excel 2007
    Posts
    454

    Re: Inconsistent Mapping Requirements Within Data Set

    This was also fun. I read many a post requesting data manipulation that seems better suited to a database than a spreadsheet (you can fulfill your requirement in MSAccess in under 5 minutes with no code), but there are also cases where you just need some SQL power for parts of your largely spreadsheet application. And this is an Excel forum after all.

    SqlSplit.xlsm

    I used your question as my test case, but I intend to keep this code in my own toolbox.

    • Uses no spreadsheet overhead; should be minimal on memory in general (vba array usage will still be a limitation)
    • No need to copy formulas further down than is necessary to cater for unknown record counts
    • Uses no formulas, and minimal vba data processing
    • It should be very fast for large data (I haven't tested)
    • Only the first 2 procedures are specifically related to your requirement, the others are generic and you can use them for other similar tasks.
    • 'Tables' are referred to in SQL queries as range names, which in turn simply refer to the cell at the top-left cell of the sheet data.

    In the attached example, the range name 'Data_Table' refers to Sheet1!B4. When executing, the code resolves the single cell into a Range using the CurrentRegion property. See CurrentRegion help for rules about how it autodetects its extents.

  5. #5
    Valued Forum Contributor quekbc's Avatar
    Join Date
    01-18-2010
    Location
    Sydney, Australia
    MS-Off Ver
    2010, 2013, 2016
    Posts
    1,149

    Re: Inconsistent Mapping Requirements Within Data Set

    Perfect. Can't forget the snowflakes. Kids will throw massive tantrums.

  6. #6
    Valued Forum Contributor quekbc's Avatar
    Join Date
    01-18-2010
    Location
    Sydney, Australia
    MS-Off Ver
    2010, 2013, 2016
    Posts
    1,149

    Re: Inconsistent Mapping Requirements Within Data Set

    Cyiangou. When I run it, it doesn't seem to be producing outputs for Snowflakes.

  7. #7
    Valued Forum Contributor
    Join Date
    09-17-2012
    Location
    Johannesburg, South Africa
    MS-Off Ver
    Excel 2007
    Posts
    454

    Re: Inconsistent Mapping Requirements Within Data Set

    Odd, it was. But now it's not. Stand by...

  8. #8
    Valued Forum Contributor
    Join Date
    09-17-2012
    Location
    Johannesburg, South Africa
    MS-Off Ver
    Excel 2007
    Posts
    454

    Re: Inconsistent Mapping Requirements Within Data Set

    Meh. It was leaving off the last column too. Corrected version:

    SqlSplit.xlsm

  9. #9
    Valued Forum Contributor
    Join Date
    09-17-2012
    Location
    Johannesburg, South Africa
    MS-Off Ver
    Excel 2007
    Posts
    454

    Re: Inconsistent Mapping Requirements Within Data Set

    Haha! Thanks for the heads up. Edit: Oh, and the rep!
    Last edited by cyiangou; 07-29-2015 at 03:53 AM.

  10. #10
    Registered User
    Join Date
    07-28-2015
    Location
    NYC
    MS-Off Ver
    2013
    Posts
    2

    Re: Inconsistent Mapping Requirements Within Data Set

    Extremely helpful. Thanks!

+ 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] Matching Data with set requirements
    By gassiusmax in forum Excel Formulas & Functions
    Replies: 7
    Last Post: 01-29-2015, 12:07 PM
  2. Need to organize data based on requirements....explained below
    By bmbalamurali in forum Excel Programming / VBA / Macros
    Replies: 2
    Last Post: 10-08-2013, 06:16 PM
  3. Replies: 8
    Last Post: 08-29-2013, 06:40 PM
  4. Replies: 1
    Last Post: 08-11-2012, 05:43 PM
  5. Link Partial Data To Cell If Data Meets Requirements
    By swordswinger710 in forum Excel Programming / VBA / Macros
    Replies: 9
    Last Post: 06-20-2012, 10:47 AM
  6. Inconsistent data rows
    By junada0 in forum Excel Programming / VBA / Macros
    Replies: 2
    Last Post: 11-12-2010, 04:15 PM
  7. EXCEL data worksheet requirements
    By gurp99 in forum Excel General
    Replies: 5
    Last Post: 08-09-2010, 02:42 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