Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
6 years ago
Solved

Loop through the table in M query

Hello Everyone,   I have a below table name as TitleDim,     its dynamic sometimes has 2 rows and sometimes has 3 rows and more. Loop through the table 'Title.Name' and set as column header a...
  • Jimmy801's avatar
    Jimmy801
    6 years ago

    Hello Anonymous 

     

    you can use List.Accumulate to accomplish your task. 

    Here the complete solution

    let
    	Source = #table
    	(
    		{"Title.Name","Value.Attributes.L01"},
    		{
    			{"Name1","Australia"},	{"Name2","Volkwagen"}
    		}
    	),
    	CellValue = #table
    	(
    		{"Cell.Value"},
    		{
    			{"1"},	{"5"}, {"6"}
    		}
    	),
    	ListAccumulate = List.Accumulate
    	(
    		{0..Table.RowCount(Source)-1},
    		CellValue,
    		(old,current)=>
    		Table.AddColumn(old, Source[Title.Name]{current}, each Source[Value.Attributes.L01]{current} )
    	)
    in
        ListAccumulate

     

    Copy paste this code to the advanced editor in a new blank query to see how the solution works. If this solution fits your need, copy and past a part of it and implement it in your query.

    If this post helps or solves your problem, please mark it as solution (to help other users find useful content and to acknowledge the work of users that helped you)
    Kudoes are nice too

    Have fun

    Jimmy