Forum Discussion
ArcGis Animation doesn't update properly
Hi RobertSlattery,
It worked fine in my test with both Power BI Service and Desktop. Could you please check these thing below?
1. Upgrading Desktop to the latest version is recommended. (2.48.4792.721 64-bit (July 2017)).
2. Do these tables have proper relationships?
3. Could you please post some snapshots of your report?
4. What is in the field "size"? If it's a measure, what's the formula?
Best Regards!
Dale
- RobertSlattery9 years ago
Responsive Resident
Hi, thanks for taking an interest.
There were no measures, the "size" field is a numeric field in the combined query.
The only box I haven't ticked is having the latest version (I don't have admin rights and its after hours here).
I made a stripped down version of the app and removed everything except the function, the source queries (the ones I am combining) and the query that consumes the function. I also deleted all relationships and still had the same problem. I then deleted all visuals and the problem remains.
All of the elements are included below (note the source queries are all drawn from seperate excel files...
addFY
Let
export = (baseName as text, fy as list) =>
let
ret = List.Transform(fy, each
let
name = "#" & """" & Text.Replace(baseName, "$", Text.From(_)) & """",
t = Table.Buffer(Expression.Evaluate(name, #shared)),
year = _
in
Table.AddColumn(t, "FY", each year)
)
in
ret
in
export
// Table.Combine(addFY("Invoice_Summary FY to $", {2012,2013,2014,2015,2016,2017}))
There is one of these for each FY, all from different excel files…
Invoice_Summary FY to 20XX
let
Source = Excel.Workbook(File.Contents("C:\Users\...\file with one FY data.xlsx"), null, true),
Invoice_Summary_Table = Source{[Item="Invoice_Summary",Kind="Table"]}[Data]
in
Invoice_Summary_Table
AllInvoices query…
Let
AllYears = Table.Combine(addFY("Invoice_Summary FY to $", {2012,2013,2014,2015,2016,2017}))
in
AllYears
- v-jiascu-msft9 years ago
Microsoft Employee
Hi RobertSlattery,
I think the problem couldn't be in the queries. How does the data look like in the "Data" view? Could you please post some snapshots? Could you please create a new file to create this visual? Because I didn't even add a column to the "size" field in my test. Finally I created a new one, everything went fine.
Best Regards!
Dale
- RobertSlattery9 years ago
Responsive Resident
I simplified it even further, with very basic (anonimous) data, with just two files combineded still the same error.
Please check it out here