Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Join the FabCon + SQLCon recap series. Up next: Power BI, Real-Time Intelligence, IQ and AI, and Data Factory take center stage. All sessions are available on-demand after the live show. Register now

Reply
Anonymous
Not applicable

Regd multi row input file

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 IDEmpl NameJobsjoining datelocation
123john ConorDeveloper1-1-1990Canada
  

QA

1-1-1990Canada
  BA1-1-1990Canada
1 REPLY 1
Mahesh0016
Super User
Super User

@Anonymous 
> step 1 : if blank value then replace blank value with null.

Mahesh0016_2-1690979161925.png

 

Mahesh0016_1-1690979079397.png

 


> step 2 : Select Both column >then right Click > Fill > Down
>fill Down side column.

Mahesh0016_0-1690978943261.png

 

 

 

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!! 

Helpful resources

Announcements
April Power BI Update Carousel

Power BI Monthly Update - April 2026

Check out the April 2026 Power BI update to learn about new features.

New to Fabric survey Carousel

New to Fabric Survey

If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.

FabCon and SQLCon Highlights Carousel

FabCon &SQLCon Highlights

Experience the highlights from FabCon & SQLCon, available live and on-demand starting April 14th.