Results 1 to 19 of 19

Sum each row with based on Col A of Data Sheet

Threaded View

  1. #19
    Forum Expert
    Join Date
    12-09-2014
    Location
    Trakai, Lithuania
    MS-Off Ver
    2016
    Posts
    1,410

    Re: Sum each row with based on Col A of Data Sheet

    Power Query
    let
        Source = Excel.CurrentWorkbook(){[Name="Table1"]}[Content],
        #"Unpivoted Other Columns" = Table.UnpivotOtherColumns(Source, {"test", "Name/Date"}, "Attribute", "Value"),
        #"Grouped Rows" = Table.Group(#"Unpivoted Other Columns", {"test", "Name/Date", "Attribute"}, {{"sum", each List.Sum([Value]), type number}}),
        #"Pivoted Column" = Table.Pivot(#"Grouped Rows", List.Distinct(#"Grouped Rows"[Attribute]), "Attribute", "sum")
    in
        #"Pivoted Column"
    Attached Files Attached Files

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. [SOLVED] Copy data from Sheet b to Sheet A, based on the existing contents of Sheet A
    By patrickrw99 in forum Excel Formulas & Functions
    Replies: 9
    Last Post: 03-01-2022, 04:51 AM
  2. Replies: 1
    Last Post: 03-01-2022, 03:25 AM
  3. Replies: 2
    Last Post: 01-23-2016, 01:16 PM
  4. Replies: 4
    Last Post: 10-16-2015, 12:59 PM
  5. Need a code to generate data on sheet 1 based on data from sheet 2, multiple critereia
    By TrinhTran02 in forum Excel Programming / VBA / Macros
    Replies: 0
    Last Post: 02-12-2015, 03:10 PM
  6. [SOLVED] Copy and paste data from sheet 2 to sheet 1 based on specific criteria on sheet 1
    By VBADUD in forum Excel Programming / VBA / Macros
    Replies: 2
    Last Post: 12-05-2012, 04:18 AM
  7. As user fills out data sheet, then fill out a results sheet based on data sheet entry
    By clemsoncooz in forum Excel Programming / VBA / Macros
    Replies: 8
    Last Post: 02-13-2012, 03:57 PM

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