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

The Power BI DataViz World Championships are on! With four chances to enter, you could win a spot in the LIVE Grand Finale in Las Vegas. Show off your skills.

Reply

New column in source table not appearing after refresh

When I click on Refresh after adding in updated data, ie has extra 2 columns, this is not included in the table.

 

In the table currently has 7 columns, but in my source has 11 columns. How do I ensure the whole of the source worksheet is including any extra columns?

 

let
Source = Excel.CurrentWorkbook(){[Name="Table1"]}[Content],
#"Changed Type" = Table.TransformColumnTypes(Source,{{"App Group name", type text}, {"App Group name(T)", type text}, {"User", type text}, {"Description", type text}, {"User type(T)", type text}, {"Value", Int64.Type}}),
#"Grouped Rows" = Table.Group(#"Changed Type", {"App Group name"}, {{"Description", each Text.Combine([Description], ", ")}}),
#"Split Column by Delimiter" = Table.SplitColumn(#"Grouped Rows", "Description", Splitter.SplitTextByDelimiter(",", QuoteStyle.Csv), {"Description.1", "Description.2", "Description.3", "Description.4", "Description.5", "Description.6", "Description.7"}),
#"Changed Type1" = Table.TransformColumnTypes(#"Split Column by Delimiter",{{"Description.1", type text}, {"Description.2", type text}, {"Description.3", type text}, {"Description.4", type text}, {"Description.5", type text}, {"Description.6", type text}, {"Description.7", type text}})
in

 

Thanks 

Michelle

3 REPLIES 3
baghdadi62
Resolver III
Resolver III

You have used "group by" in the data cleansing process. The question is, how will their placement in the grouping change when new columns are added?

baghdadi62
Resolver III
Resolver III

In 3rd step you grouped table that affectes on the result and you can't see the extra columns because they didn't use in "group by" step.

Great so what is the solution? 

Helpful resources

Announcements
Las Vegas 2025

Join us at the Microsoft Fabric Community Conference

March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!

FebPBI_Carousel

Power BI Monthly Update - February 2025

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

Feb2025 NL Carousel

Fabric Community Update - February 2025

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