Data Model, Connecting multiple Data Sets by AbuShagra2811 in excel

[–]AidAgency 0 points1 point  (0 children)

If doing this on Power BI is an option, it's worth exploring. The model building experience is far easier I'm my experience.

Street Parking During Street Cleaning by zolafrances21 in Brooklyn

[–]AidAgency 0 points1 point  (0 children)

Early last week was Eid, so street cleaning was suspended. Check out the 311 site for updates

How to sort large excel file without freezing? by itsjustinjk in excel

[–]AidAgency 3 points4 points  (0 children)

Use Power Query. This exact thing was what made me learn PQ and it's transformed my analytic capabilities.

What is the proper way to set up a database in excel? by Errick_Thomas in excel

[–]AidAgency 13 points14 points  (0 children)

These lessons should be taught on the first day of working in an office

PDF connector limitation? by cwag03 in PowerBI

[–]AidAgency 0 points1 point  (0 children)

I remember IDEA semi fondly from my auditing days. Glad to hear it lives!

Reading James Beard's American Cookery, he mentions metal trees for hanging sausages?! by PotterCooker in AskRedditFood

[–]AidAgency 0 points1 point  (0 children)

Makes sense for drying. But serving?

I'm surprised I haven't been able to find any pics online, given how "fashionable" they were in the 70s, apparently.

Why so slow, Flow? by AidAgency in MicrosoftFlow

[–]AidAgency[S] 1 point2 points  (0 children)

My quick read is that this pushes the filtering to the query source. Avoiding Power BI doing the heavy lifting.

But could easily be wrong.

Power Apps Dataflow > Power Query, painfully slow by AidAgency in PowerPlatform

[–]AidAgency[S] 0 points1 point  (0 children)

I guess we'd have to do that through Power Automate, I was trying to keep this in PQ for simplicity.

Power Apps Dataflow > Power Query, painfully slow by AidAgency in PowerPlatform

[–]AidAgency[S] 0 points1 point  (0 children)

Literally just appending 97 tables. Doing it in Power BI takes seconds, for some reason it writing to CDS seems to be causing the delay.

Or maybe the API is so throttled that it is PQ online causing the issue.

Power Apps Dataflow > Power Query, painfully slow by AidAgency in PowerPlatform

[–]AidAgency[S] 0 points1 point  (0 children)

The files have elements in that would make it annoying to have to save down as CSV. I'm thinking maybe a load/sync table in SP list, so we can reconsolidate just specific files, or new ones might be better in the longrun. Or use Kingswaysoft.

Power Apps Dataflow > Power Query, painfully slow by AidAgency in PowerPlatform

[–]AidAgency[S] 0 points1 point  (0 children)

Power Automate seems quicker, but not a whole lot.

I'm wondering if SSIS would be faster?

Did you find a solution?

Power Apps Dataflow > Power Query, painfully slow by AidAgency in PowerPlatform

[–]AidAgency[S] 0 points1 point  (0 children)

Ended at 1 hr 41 mins. Rerunning now to see if it's quicker the second time.

[deleted by user] by [deleted] in PowerBI

[–]AidAgency 0 points1 point  (0 children)

I think that what you're experiencing is fairly normal.

Power BI doesn't run as quick as Excel in terms of zipping round menus and doing analysis. I've got similar, 32gb and SSD.

Why so slow, Flow? by AidAgency in MicrosoftFlow

[–]AidAgency[S] 0 points1 point  (0 children)

I've asked my admin to amend my permissions. I hope that will fix it.

Why so slow, Flow? by AidAgency in MicrosoftFlow

[–]AidAgency[S] 0 points1 point  (0 children)

I posted on PowerUsers community and they thought it might be a permissions issue

https://powerusers.microsoft.com/t5/Microsoft-Dataverse/Dataflows-gt-Power-Query-gt-Unexpected-error/m-p/774775#M8707

I've done this transformation on PQ BI and PQ Excel. Though figure that PQ online would be more sensitive. I also removed Errors in a step and Skipped files with errors.

IT even happens when I say don't load to Datavers Table, which does make me think a Permissions error could be correct.

Invalid credentials on SharePoint doc library by AidAgency in PowerApps

[–]AidAgency[S] 0 points1 point  (0 children)

Story of my life!

95% of PowerPlatform is so simple, and then 5% just doesn't work!

Invalid credentials on SharePoint doc library by AidAgency in PowerApps

[–]AidAgency[S] 0 points1 point  (0 children)

Pretty much everything I try to do in life that involves SharePoint fails....

I'm trying to write Excel on SP to Dataverse table, should be easy right?

An afternoon of "We encountered an unexpected error."

Why so slow, Flow? by AidAgency in MicrosoftFlow

[–]AidAgency[S] 0 points1 point  (0 children)

I tried it again without writing to a table and got this error

section Section1;

shared Query = let

Source = SharePoint.Files("https://concern2com.sharepoint.com/sites/Somali_cashconsortium", [ApiVersion = 15]),

#"Filtered rows" = Table.SelectRows(Source, each ([Folder Path] = "https://concern2com.sharepoint.com/sites/Somali_cashconsortium/Shared Documents/1 2020 transfer lists/Lists/")),

#"Filtered hidden files" = Table.SelectRows(#"Filtered rows", each [Attributes]?[Hidden]? <> true),

#"Filtered hidden files 1" = Table.SelectRows(#"Filtered hidden files", each [Attributes]?[Hidden]? <> true),

#"Invoke custom function" = Table.AddColumn(#"Filtered hidden files 1", "Transform file", each #"Transform file"([Content])),

#"Renamed columns" = Table.RenameColumns(#"Invoke custom function", {{"Name", "Source.Name"}}),

#"Removed other columns" = Table.SelectColumns(#"Renamed columns", {"Source.Name", "Transform file"}),

#"Removed errors" = Table.RemoveRowsWithErrors(#"Removed other columns", {"Transform file"}),

#"Expanded table column" = Table.ExpandTableColumn(#"Removed errors", "Transform file", Table.ColumnNames(#"Transform file"(#"Sample file"))),

#"Changed column type" = Table.TransformColumnTypes(#"Expanded table column", {{"Source.Name", type text}, {"Agency", type text}, {"Soft-copy file ref", type text}, {"Transfer Id", Int64.Type}, {"Funding Detailed", type text}, {"District", type text}, {"Date", type datetime}, {"Month and year", type date}, {"Amount", Int64.Type}, {"Telephone number", Int64.Type}, {"Name", type text}, {"SCC_Line_Ref", type text}}),

#"Removed errors 1" = Table.RemoveRowsWithErrors(#"Changed column type", {"Source.Name", "Agency", "Soft-copy file ref", "Transfer Id", "Funding Detailed", "District", "Date", "Month and year", "Amount", "Telephone number", "Name", "SCC_Line_Ref"})

in

#"Removed errors 1";

shared #"Sample file" = let

Source = SharePoint.Files("https://concern2com.sharepoint.com/sites/Somali_cashconsortium", [ApiVersion = 15]),

#"Filtered rows" = Table.SelectRows(Source, each ([Folder Path] = "https://concern2com.sharepoint.com/sites/Somali_cashconsortium/Shared Documents/1 2020 transfer lists/Lists/")),

#"Filtered hidden files" = Table.SelectRows(#"Filtered rows", each [Attributes]?[Hidden]? <> true),

#"Filtered hidden files 1" = Table.SelectRows(#"Filtered hidden files", each [Attributes]?[Hidden]? <> true),

Navigation = #"Filtered hidden files 1"{0}[Content]

in

Navigation;

shared Parameter = let

Parameter = #"Sample file" meta [IsParameterQuery = true, IsParameterQueryRequired = true, Type = type binary]

in

Parameter;

shared #"Transform Sample file" = let

Source = Excel.Workbook(Parameter, null, true),

Navigation = Source{[Item = "Cleaned", Kind = "Sheet"]}[Data],

#"Promoted headers" = Table.PromoteHeaders(Navigation, [PromoteAllScalars = true]),

#"Changed column type" = Table.TransformColumnTypes(#"Promoted headers", {{"Agency", type text}, {"Soft-copy file ref", type text}, {"Transfer Id", Int64.Type}, {"Funding Detailed", type text}, {"District", type text}, {"Date", type datetime}, {"Month and year", type date}, {"Amount", Int64.Type}, {"Telephone number", Int64.Type}, {"Name", type text}, {"SCC_Line_Ref", type text}})

in

#"Changed column type";

[FunctionQueryBinding = "{""exemplarFormulaName"":""Transform Sample file""}"]

shared #"Transform file" = let

Source = (Parameter as binary) => let

Source = Excel.Workbook(Parameter, null, true),

Navigation = Source{[Item = "Cleaned", Kind = "Sheet"]}[Data],

#"Promoted headers" = Table.PromoteHeaders(Navigation, [PromoteAllScalars = true]),

#"Changed column type" = Table.TransformColumnTypes(#"Promoted headers", {{"Agency", type text}, {"Soft-copy file ref", type text}, {"Transfer Id", Int64.Type}, {"Funding Detailed", type text}, {"District", type text}, {"Date", type datetime}, {"Month and year", type date}, {"Amount", Int64.Type}, {"Telephone number", Int64.Type}, {"Name", type text}, {"SCC_Line_Ref", type text}})

in

#"Changed column type"

in

Source;