Don't miss your chance to take the Fabric Data Engineer (DP-600) exam for FREE! Find out how by attending the DP-600 session on April 23rd (pacific time), live or on-demand.
Learn moreNext up in the FabCon + SQLCon recap series: The roadmap for Microsoft SQL and Maximizing Developer experiences in Fabric. All sessions are available on-demand after the live show. Register now
Dear Team,
I have an issue with the input file. . It is xlsx format. My first 3 rows of the file points shows the first record. Please see this table below. Emplid column is present only once but he has 3 different jobs. How do I transform this data set? Please note there are multiple rows like this. Thanks in advance.
| Emplid ID | Empl Name | Jobs | joining date | location |
| 123 | john Conor | Developer | 1-1-1990 | Canada |
QA | 1-1-1990 | Canada | ||
| BA | 1-1-1990 | Canada |
@Anonymous
> step 1 : if blank value then replace blank value with null.
> step 2 : Select Both column >then right Click > Fill > Down
>fill Down side column.
let
Source = Table.FromRows(Json.Document(Binary.Decompress(Binary.FromText("i45WMjQyVtJRysrPyFNwzs/LLwJyXFLLUnPyC1JBbENdILS0NAAynRPzElMSlWJ1opWAPCAKdCSgwAm3AkMjE6i19LAwFgA=", BinaryEncoding.Base64), Compression.Deflate)), let _t = ((type nullable text) meta [Serialized.Text = true]) in type table [#"Emplid ID" = _t, #"Empl Name" = _t, Jobs = _t, #"joining date" = _t, location = _t]),
#"Changed Type" = Table.TransformColumnTypes(Source,{{"Emplid ID", Int64.Type}, {"Empl Name", type text}, {"Jobs", type text}, {"joining date", type date}, {"location", type text}}),
#"Filled Down" = Table.FillDown(#"Changed Type",{"Emplid ID"}),
#"Replaced Value" = Table.ReplaceValue(#"Filled Down","",null,Replacer.ReplaceValue,{"Empl Name"}),
#"Filled Down1" = Table.FillDown(#"Replaced Value",{"Empl Name"})
in
#"Filled Down1"
@Anonymous i hope this helps you! Thank You!!
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 |
|---|---|
| 6 | |
| 3 | |
| 3 | |
| 3 | |
| 2 |