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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
PemaChoki
Regular Visitor

Create a new table with data from two existing table

i have  two table in the report.The new table will contain the data from table1 and table 2.

 

The first two column in the new table will be same as the date and c1 from the table.The second column in the new table will be the value from the table2 column1.For the same date it will picked the same value from the table2.Then it will repeat for the missing date until it encounter the same date again.It seem to repeated the same value twice till the next same date. If the date value is missing in the table2 , then it repeat the most recent value.Attaching the screenshot of tables and data.

 

PemaChoki_0-1599196187577.png

 

 

 

1 REPLY 1
lbendlin
Super User
Super User

Do a left join on the date, and then use FillDown to close the gaps in the cl column.

 

let
    Source = Table.NestedJoin(Table1, {"Date"}, Table2, {"Date"}, "Table2", JoinKind.LeftOuter),
    #"Expanded Table2" = Table.ExpandTableColumn(Source, "Table2", {"cl"}, {"cl"}),
    #"Filled Down" = Table.FillDown(#"Expanded Table2",{"cl"})
in
    #"Filled Down"

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

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

April Fabric Community Update

Fabric Community Update - April 2024

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