March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early bird discount ends December 31.
Register NowBe one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now
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.
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.