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

Power BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. Register now.

Reply
Giizzo
Regular Visitor

Changing incorrect data in Power Query

Hi all,

 

A data file which we process in Power BI has incorrect data and we want to fix this in Power Query. We have a list with three columns, namely 'Employee Name', 'Date' and 'Company Name'.

 

An employee can appear multiple times with various dates and/or company names. Some of the company names are wrong; in this example they are called 'Wrong'.

Example.JPG

Is it possible to change the company names indicated as 'Wrong' to the company name where the employee was listed prior to the date 'Wrong'; and if so, how?

 

Thanks in advance for any help!

 

 

 

2 ACCEPTED SOLUTIONS
BA_Pete
Super User
Super User

Hi @Giizzo ,

 

Select the [Company] column, go to the Transform tab and hit Replace Values. In the first box, type "Wrong", then in the second, type null. This will clear your incorrect entries.

Then sort your table first by [Name] ascending, then by [Date] ascending to ensure we get the chronological flow correct.

Then, select the [Company] column again, go to the Transform tab and hit Fill > Fill Down. This should fill in your gaps with the last chronological entry.

 

Pete

 



Now accepting Kudos! If my post helped you, why not give it a thumbs-up?

Proud to be a Datanaut!




View solution in original post

v-yingjl
Community Support
Community Support

Hi @Giizzo ,

You can try this query:

let
    Source = Table.FromRows(Json.Document(Binary.Decompress(Binary.FromText("hZG9DsIwDIRfBWWu5PpMfjrzCkgMVQcGxESLgIW3J1JF05/EVRZL993ZjtvWnG/vD5vKoAZTfLE8DY/ntf8e2HTVChAKsby8hv6eE5s9N2NGIEvsZFhip2fYMaMwpCPYshoIQe/fkNTZ/vgTKHziBBxJ9ARHTk/w5PWEJnOnSWQs75AayOwOG7+k+RXRFraXtJzi9gs3tkBYA90P", BinaryEncoding.Base64), Compression.Deflate)), let _t = ((type nullable text) meta [Serialized.Text = true]) in type table [Name = _t, Date = _t, Company = _t]),
    #"Changed Type" = Table.TransformColumnTypes(Source,{{"Name", type text}, {"Date", type date}, {"Company", type text}}),
    #"Replaced Value" = Table.ReplaceValue(#"Changed Type","Wrong",null,Replacer.ReplaceValue,{"Company"}),
    #"Grouped Rows" = 
        Table.Group(
            #"Replaced Value", {"Name"}, 
            {
                {
                    "Data", each 
                        if Table.First(_)[Company] = null then 
                        Table.FillUp(Table.FillDown(_,{"Company"}),{"Company"}) else
                        Table.FillDown(_,{"Company"})
                    , type table [Name=nullable text, Date=nullable date, Company=nullable text]
                }
            }
        ),
    #"Expanded Data" = Table.ExpandTableColumn(#"Grouped Rows", "Data", {"Date", "Company"}, {"Date", "Company"})
in
    #"Expanded Data"

vyingjl_0-1636511631030.png

 

Best Regards,
Community Support Team _ Yingjie Li
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

7 REPLIES 7
v-yingjl
Community Support
Community Support

Hi @Giizzo ,

You can try this query:

let
    Source = Table.FromRows(Json.Document(Binary.Decompress(Binary.FromText("hZG9DsIwDIRfBWWu5PpMfjrzCkgMVQcGxESLgIW3J1JF05/EVRZL993ZjtvWnG/vD5vKoAZTfLE8DY/ntf8e2HTVChAKsby8hv6eE5s9N2NGIEvsZFhip2fYMaMwpCPYshoIQe/fkNTZ/vgTKHziBBxJ9ARHTk/w5PWEJnOnSWQs75AayOwOG7+k+RXRFraXtJzi9gs3tkBYA90P", BinaryEncoding.Base64), Compression.Deflate)), let _t = ((type nullable text) meta [Serialized.Text = true]) in type table [Name = _t, Date = _t, Company = _t]),
    #"Changed Type" = Table.TransformColumnTypes(Source,{{"Name", type text}, {"Date", type date}, {"Company", type text}}),
    #"Replaced Value" = Table.ReplaceValue(#"Changed Type","Wrong",null,Replacer.ReplaceValue,{"Company"}),
    #"Grouped Rows" = 
        Table.Group(
            #"Replaced Value", {"Name"}, 
            {
                {
                    "Data", each 
                        if Table.First(_)[Company] = null then 
                        Table.FillUp(Table.FillDown(_,{"Company"}),{"Company"}) else
                        Table.FillDown(_,{"Company"})
                    , type table [Name=nullable text, Date=nullable date, Company=nullable text]
                }
            }
        ),
    #"Expanded Data" = Table.ExpandTableColumn(#"Grouped Rows", "Data", {"Date", "Company"}, {"Date", "Company"})
in
    #"Expanded Data"

vyingjl_0-1636511631030.png

 

Best Regards,
Community Support Team _ Yingjie Li
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Thanks for the response. The solution offered by BA_Pete worked for me, but your response would no doubt work just as well or perhaps even better for a more complex table.

ronrsnfld
Super User
Super User

What about the case where the company name is Wrong on the first date the employee worked?

Group by Name,

FillDown [Company] within group,

then FillUp [Company] within group,

Expand.

That works to fill in the blanks, but it doesn't satisfy the condition set out by @Giizzo  where he specified: the company name where the employee was listed prior to the date 'Wrong';  So I was asking for clarification as to what, exactly, he wanted to do where there was no prior date.

BA_Pete
Super User
Super User

Hi @Giizzo ,

 

Select the [Company] column, go to the Transform tab and hit Replace Values. In the first box, type "Wrong", then in the second, type null. This will clear your incorrect entries.

Then sort your table first by [Name] ascending, then by [Date] ascending to ensure we get the chronological flow correct.

Then, select the [Company] column again, go to the Transform tab and hit Fill > Fill Down. This should fill in your gaps with the last chronological entry.

 

Pete

 



Now accepting Kudos! If my post helped you, why not give it a thumbs-up?

Proud to be a Datanaut!




Thanks for the response. This worked perfectly.

Helpful resources

Announcements
June 2025 Power BI Update Carousel

Power BI Monthly Update - June 2025

Check out the June 2025 Power BI update to learn about new features.

June 2025 community update carousel

Fabric Community Update - June 2025

Find out what's new and trending in the Fabric community.

Top Solution Authors