+ Reply to Thread
Results 1 to 5 of 5

Database start

Hybrid View

  1. #1
    Forum Guru
    Join Date
    08-28-2014
    Location
    USA
    MS-Off Ver
    Excel 365 version 2501
    Posts
    18,973

    Re: Database start

    If you have Excel 2016 or more recent then Get & Transform in included. If you have the 2010 or 2013 version then Power Query is a free download from Microsoft. (Please put the Excel version in the profile for MS-Off Ver: )
    Using Power Query you could:
    1. Convert the range on the Events sheet to a table (tblEvents)
    2. Make connections to the three tables in the workbook by selecting the Data tab > From Table/Range > (Power Query Editor) Close & Load to: > Only Create Connection
    3. Merge the three connections using the following advanced editor code:
    let
        Source = Table.NestedJoin(Master, {"member ID"}, tblEvents, {"member ID"}, "tblEvents", JoinKind.LeftOuter),
        #"Expanded tblEvents" = Table.ExpandTableColumn(Source, "tblEvents", {"MOMA", "Circus", "Show", "Garden"}, {"MOMA", "Circus", "Show", "Garden"}),
        #"Merged Queries" = Table.NestedJoin(#"Expanded tblEvents", {"member ID"}, SSales, {"contrubution ID"}, "SSales", JoinKind.LeftOuter),
        #"Expanded SSales" = Table.ExpandTableColumn(#"Merged Queries", "SSales", {"Quarter1", "Quarter2", "quarter3", "quarter4"}, {"Quarter1", "Quarter2", "quarter3", "quarter4"})
    in
        #"Expanded SSales"
    Let us know if you have any questions.
    Attached Files Attached Files
    Consider taking the time to add to the reputation of everybody that has taken the time to respond to your query.

+ 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: 01-28-2020, 02:14 PM
  2. Project Start Date and Tasks Start/Finish Time
    By sammyb304 in forum Excel Formulas & Functions
    Replies: 6
    Last Post: 11-11-2019, 09:36 AM
  3. Hoping for guidance on creating database (Access) - Start up
    By Paul192 in forum Access Tables & Databases
    Replies: 2
    Last Post: 11-23-2017, 08:10 AM
  4. I want to make a database program, how can I start for?
    By cotton2014 in forum Access Tables & Databases
    Replies: 16
    Last Post: 07-19-2016, 05:46 AM
  5. OT :Start your own online business today !start making dollars
    By ag281962@hotmail.com in forum Excel General
    Replies: 0
    Last Post: 05-06-2006, 04:35 PM
  6. how to start a database
    By adminsly in forum Excel General
    Replies: 4
    Last Post: 08-26-2005, 02:05 AM

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