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

Learn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now

Reply
rakary_10
Regular Visitor

show data changes in another table

Hi,

 

I have a table where that data is updated in a weekly basis and I need to know everyweek what data has been modified. If possibile even highlight them so that I could track the changes.

Every week there are new rows that are added too in the file and I need those rows to be copied in another table.

 

Is there are a way to copy all data from the original table to a new table and highlight the changes that have been made? and also copy automatically newly added rows?

 

Thanks

 

1 ACCEPTED SOLUTION
MAwwad
Solution Sage
Solution Sage

To copy newly added rows to another table, you can use a Power Query (M) formula to filter the original table for rows that have been added since the last refresh.

 

AddedRows = Table.SelectRows(Table, each [Modified Date] >= #date(2022, 1, 1))
 
This formula will return all rows in the table where the "Modified Date" column is greater than or equal to January 1, 2022. You can then use the "Append Queries" feature to append the filtered rows to another table.

View solution in original post

1 REPLY 1
MAwwad
Solution Sage
Solution Sage

To copy newly added rows to another table, you can use a Power Query (M) formula to filter the original table for rows that have been added since the last refresh.

 

AddedRows = Table.SelectRows(Table, each [Modified Date] >= #date(2022, 1, 1))
 
This formula will return all rows in the table where the "Modified Date" column is greater than or equal to January 1, 2022. You can then use the "Append Queries" feature to append the filtered rows to another table.

Helpful resources

Announcements
Join our Fabric User Panel

Join our Fabric User Panel

Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.

February Power BI Update Carousel

Power BI Monthly Update - February 2026

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

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.