Forum Discussion
[Help] How to convert a list values to row values
Hussain_R , Please paste the data in table format. Not able to understand the same
Based on what I got
Assume the current format is
Column 1 Column 2 BillF 1/1/2024 BillF HDM24001 BillF ABC Corp BillV 234.7 ... ... Expected is
Bill Date Bill Reference Customer Name Bill Value 1/1/2024 HDM24001 ABC Corp 234.7 ... ... ... ...
Add an index column from 0
Add another column, divide by 4, Group Index
= Table.AddColumn(#"Previous Step", "Group Index", each Number.IntegerDivide([Index], 4))
Pivot the Table with the do not Aggregate option in Advance and try
If this does not help
Can you share sample data and sample output in table format? Or a sample pbix after removing sensitive data.
1 Reply
- amitchandakSuper User
Hussain_R , Please paste the data in table format. Not able to understand the same
Based on what I got
Assume the current format is
Column 1 Column 2 BillF 1/1/2024 BillF HDM24001 BillF ABC Corp BillV 234.7 ... ... Expected is
Bill Date Bill Reference Customer Name Bill Value 1/1/2024 HDM24001 ABC Corp 234.7 ... ... ... ...
Add an index column from 0
Add another column, divide by 4, Group Index
= Table.AddColumn(#"Previous Step", "Group Index", each Number.IntegerDivide([Index], 4))
Pivot the Table with the do not Aggregate option in Advance and try
If this does not help
Can you share sample data and sample output in table format? Or a sample pbix after removing sensitive data.