The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends September 15. Request your voucher.
Hi,
I have a table with a column "Document No_" who has 3 lines for each document value.
Each line has different information for that document value.
I want to consolidate that information into only one line for each document value.
Like this:
Document No_ | Value(Decimal) | Value(Date) | Valuta
D000255 | 1544 | 06.05.2018 | null
D000259 | 480 | 19.10.17 | AUD
Here is a sample of the date I have:
Solved! Go to Solution.
Hello @Rune_
you can use Table.Pivot to solve this issue.
What I didn't get was why D000258 is not shown in your final table
Here the code
let
Source = Table.FromRows(Json.Document(Binary.Decompress(Binary.FromText("i45WcjEwMDAyNVXSUXL09Q/1C/H0c/YJcwwB8g1NTUyUYnWQlTiHBgU5+7u4AploMi6hri6OISAJAzM9A1M9IwNDC6XYWAA=", BinaryEncoding.Base64), Compression.Deflate)), let _t = ((type nullable text) meta [Serialized.Text = true]) in type table [#"Document No_" = _t, Code = _t, #"Value (Text)" = _t]),
#"Pivoted Column" = Table.Pivot(Source, List.Distinct(Source[Code]), "Code", "Value (Text)"),
#"Changed Type" = Table.TransformColumnTypes(#"Pivoted Column",{{"AMOUNTINCLVAT", type number}, {"CURRCODE", type text}, {"DUEDATE", type date}})
in
#"Changed Type"
Copy paste this code to the advanced editor in a new blank query to see how the solution works.
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
by applying this code to this table
you get want expected
Hi @Anonymous ,
This workes for the first two columns, but not the CURRCODE column.
See before code and after code.
Hi @Rune_
to get the best possible help, you should provide tables in easy-to-copy format (not images).
You should illustrate the starting and finishing tables with meaningful examples, putting all the special cases you need to deal with.