Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
Hola,
Tengo una consulta que lee una carpeta con csvs que tienen el siguiente formato:
Necesitaria darle formato tabla de esta forma:
Gracias
Solved! Go to Solution.
Group By your header column. Choose 'All Rows' for the Operation.
The next step should add an index row to the nested tables.
Table.TransformColumns(#"Grouped Rows", {{"All Rows", each Table.AddIndexColumn(_, "Index", 1, 1)}})
Now expand the All Rows column. You do not need the header column in the expansion.
Select the header column and select Pivot Column (on the Transform ribbon). The values should be your second column and the Aggregate Value Function is 'Don't Aggregate'.
You can remove the 'Index' column to end up with something like this...
Proud to be a Super User! | |
thank you so much
Group By your header column. Choose 'All Rows' for the Operation.
The next step should add an index row to the nested tables.
Table.TransformColumns(#"Grouped Rows", {{"All Rows", each Table.AddIndexColumn(_, "Index", 1, 1)}})
Now expand the All Rows column. You do not need the header column in the expansion.
Select the header column and select Pivot Column (on the Transform ribbon). The values should be your second column and the Aggregate Value Function is 'Don't Aggregate'.
You can remove the 'Index' column to end up with something like this...
Proud to be a Super User! | |
User | Count |
---|---|
11 | |
8 | |
5 | |
5 | |
4 |
User | Count |
---|---|
16 | |
14 | |
8 | |
6 | |
6 |