Don't miss your chance to take the Fabric Data Engineer (DP-700) exam on us!
Learn moreWe've captured the moments from FabCon & SQLCon that everyone is talking about, and we are bringing them to the community, live and on-demand. Starts on April 14th. Register now
Hello everyone,
I hope you are all well.
I am attaching my sample file containing a tabble and Power Query code that is not working properly.
Could you please improve it with a more elegant solution?
Thank you in advance.
Best regards
Solved! Go to Solution.
Your pivot function is incorrect, referencing the wrong columns from the preceding step:
Table.Pivot(#"Colonnes dépivotées",
List.Distinct(#"Colonnes dépivotées"[Attribut]),
"Attribut",
"Valeur")
Hello @ronrsnfld ,
1. Fewer steps means code that is created from scratch and is often more elegant.
2. Thank you for your two suggestions.
3. The four recent steps correspond chronologically to the last four dates in the column. This is equivalent to taking the 4 last four or first values after sorting the dates in Descending or Ascending.
Indeed, it would have been more logical to use "Order.Ascending" then Table.LastN(prevStep,4).
I did the opposite with "Order.Descending" then Table.FirstN(prevStep, 4)
The result is the same.
4. I simply used the ‘Pivot Column’ feature in the Ribbon. This generated this line of code automatically.
Best regards
For me, "functional" trumps "elegant". If speed of execution is limiting, then I'd run some tests (you can do this in Power BI Desktop) to see if the pivot method or transpose method is more efficient.
If you don't have multiple entries with the same row and date, you can remove the aggregation function from the Table.Pivot function.
And if the number of rows ("A","B","C","D"} might vary, I'd rewrite a few steps to allow the code to adapt dynamically.
But other than that, I wouldn't bother to change anything.
Thank you for your reply.
Processing speed is indeed an important factor.
By elegance, I mean, of course, that it should be short, readable, and without any loss of quality.
Regarding aggregation, List.Sum is indeed useless here. I removed it and it works just as well.
The text values “A,” “B,” “C,” and “D” will never change; only new dates are added each week.
Otherwise, thank you for your advice. It helped me solve the problem and better understand the subtleties of M.
Best regards
Sorry, I went too fast, I didn't get the right result or couldn't get it.
I'll put the file that works.
However, I would have liked to reduce the number of steps.
Best regards
Hello @ronrsnfld
Thank you very much for your reply.
It works perfectly
Best regards
Your pivot function is incorrect, referencing the wrong columns from the preceding step:
Table.Pivot(#"Colonnes dépivotées",
List.Distinct(#"Colonnes dépivotées"[Attribut]),
"Attribut",
"Valeur")
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
| User | Count |
|---|---|
| 5 | |
| 4 | |
| 3 | |
| 3 | |
| 2 |
| User | Count |
|---|---|
| 8 | |
| 7 | |
| 6 | |
| 6 | |
| 5 |