Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredJoin us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM. Register now.
I have a simple database-based query:
let
Source = Sql.Database("my.sqlserver", "mydb", [CreateNavigationProperties=false, CommandTimeout=#duration(0, 0, 1, 0), HierarchicalNavigation=true]),
dbo = Source{[Schema="dbo"]}[Data],
reports_v1 = dbo{[Name="reports_v"]}[Data],
#"Removed Columns" = Table.RemoveColumns(reports_v1,{"timeworked_minutes", "id", "evid", "customername"}),
#"Filtered Rows" = Table.SelectRows(#"Removed Columns", each [created] >= #datetime(2016, 1, 1, 0, 0, 0) and [created] <= #datetime(2017, 12, 31, 0, 0, 0)),
#"Extracted Date" = Table.TransformColumns(#"Filtered Rows",{{"created", DateTime.Date}}),
#"Removed Columns1" = Table.RemoveColumns(#"Extracted Date",{ HERE SOME TABLES TO REMOVE})
in
#"Removed Columns1"
The problem is, that Preview display in Query Editor does have the data (also while highliting the last step), but when I click 'Close and apply' the resulting table in Power BI Desktop is empty (only column headers, no rows).
Is this a bug in PBI Desktop? My version is : 2.51.4885.701 64-bit (October 2017)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.