March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early bird discount ends December 31.
Register NowBe one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now
I created a new Data Flow from the Enter Data / Emty Table option.
I copied in some data from Excel (DimDate Table). It is meant to be a static date lookup.
I validated the table in PBIS Data Flows --> the entity was created.
I connected to the Flow from my desktop PBI model, the table loads, but there is not data...
I looked at the Object Expansion for the Flow, I can see each level/layer being expanded, but when it gets to the final data elements/properties, they do no appear...
There is data (manually added) in the table.
Hi @Anonymous
I'm not clear about your scenario.
Could you show more details for me to analyze better?
1. original data you enter to create a data flow
2. what steps do you apply in the data flow ( you could share the code in Advanced editor to let me kown)
3. what result it shows when connecting with Power BI Desktop?
4. "Object Expansion for the Flow", "final data elements/properties"
What do these mean?
Best Regards
Maggie
4. "Object Expansion for the Flow", "final data elements/properties"
What do these mean?
When you use M query to connect to a complex object (like json) that has nested objects, you use M query to transform and "expand" successive nested objects. Thew M query transforms these objects into new/additional objects that may also be complex/nested.
The query follows this process to give you a final record set.
I followed this process in this query, but the record set is [empty], even though i can see the records in the M query editor in Data Flows...
There is a bug. Please fix it. This is about the most basic use case available. Manually entering data to the tabular model from M...
Result is: "Table is Empty"
It is not empty, the data was added manually.
let
Source = Table.FromRows(Json.Document(Binary.Decompress(Binary.FromText("xxxxxxxxxxxxxxxxxxx [[THIS WAS A MASSIVR STRING THAT I REMOVED BECUAE OF THE CHARACTER LIMIT", BinaryEncoding.Base64), Compression.Deflate)), let _t = (type text) meta [Serialized.Text = true] in type table [#"Column 1" = _t, #"Column 2" = _t, #"Column 3" = _t, #"Column 4" = _t, #"Column 5" = _t, #"Column 6" = _t, #"Column 7" = _t, #"Column 8" = _t, #"Column 9" = _t, #"Column 10" = _t, #"Column 11" = _t, #"Column 12" = _t, #"Column 13" = _t, #"Column 14" = _t, #"Column 15" = _t, #"Column 16" = _t, #"Column 17" = _t, #"Column 18" = _t, #"Column 19" = _t, #"Column 20" = _t, #"Column 21" = _t]),
#"Promoted headers" = Table.PromoteHeaders(Source, [PromoteAllScalars = true]),
#"Changed column type" = Table.TransformColumnTypes(#"Promoted headers", {{"DateKey", type number}, {"FullDate", type date}, {"DateName", type date}, {"DayOfWeek", type number}, {"DayNameOfWeek", type text}, {"DayOfMonth", type number}, {"DayOfYear", type number}, {"WeekdayWeekend", type text}, {"WeekOfYear", type number}, {"MonthName", type text}, {"MonthOfYear", type number}, {"IsLastDayOfMonth", type text}, {"CalendarQuarter", type number}, {"CalendarYear", type number}, {"CalendarYearMonth", type date}, {"CalendarYearQtr", type text}, {"FiscalMonthOfYear", type number}, {"FiscalQuarter", type number}, {"FiscalYear", type number}, {"FiscalYearMonth", type text}, {"FiscalYearQtr", type text}})
in
#"Changed column type"
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.
Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.