Dear Aleksei,
before answering to you I made some hypothesis because like Ehren underlined it's not possible to answer you with just that screenshot.
I assumed that you have a list like this:
If you select column "Attribute" >>> Transform >>> Pivot Column >>> Select "Value" and in Advance options "Don't Aggregate" you'll get the following result:
So you must change the data source in a way similar to the following picture if you want to reach your goal:
Now again, if you select column "Attribute" >>> Transform >>> Pivot Column >>> Select "Value" and in Advance options "Don't Aggregate" you'll get the following result:
Here you can find the advanced editor detail:
let
Source = Table.FromRows(Json.Document(Binary.Decompress(Binary.FromText("i45WcvYM03UJctc1MDAwVNJR8nQLApKOSrE62KSMgJQTDjljIOWMQ84ESLlgl3MGkgYGOORMQZKG6JJGuN1phMedRnjsM8ZtpDGKtlgA", BinaryEncoding.Base64), Compression.Deflate)), let _t = ((type nullable text) meta [Serialized.Text = true]) in type table [Doc_Nr = _t, Attribute = _t, Value = _t]),
#"Changed Type" = Table.TransformColumnTypes(Source,{<!-- -->{"Doc_Nr", type text}}),
#"Pivoted Column" = Table.Pivot(#"Changed Type", List.Distinct(#"Changed Type"[Attribute]), "Attribute", "Value"),
#"Replaced Value" = Table.ReplaceValue(#"Pivoted Column",null,"-",Replacer.ReplaceValue,{"IFR", "IFR2", "IFR3", "IFR4", "IFC", "IFC5"})
in
#"Replaced Value"
After you can create a table and change the name column:
Here you can download a copy of the pbix file.
I hope that could be useful
Have a nice day
Matteo