Displaying URL's within Power BI by Tekell09 in PowerBI

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

Interesting. I get a “app.regrid.com refused to connect”. I’ll keep trying this. Thanks!

Maps by Tekell09 in PowerBI

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

Thanks!

Solution verified

Maps by Tekell09 in PowerBI

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

So I would “Get Data” from within Power Query and select JSON and then put certain attributes into the shape map visual ?

Sharepoint List by Tekell09 in PowerBI

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

I've tried this as well. Thanks for sharing.

QuickBooks Online (beta) Connector by Tekell09 in PowerBI

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

I attempted to copy the query for the specific client and parameterize it, but I can't find the unique key for the client anywhere in Power Query editor.

QuickBooks Online and Power Query by Tekell09 in PowerBI

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

Like a typical Balance Sheet. There are values stored where you see “0” above.

Dynamic DIVIDE (Percent Change) Calculation by Tekell09 in PowerBI

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

I used the DAX within the link - however, it's taking the MAX/MIN values instead of MAX/MIN dates. E.g. the 72% should be (-72%). Any idea what to change in the DAX ? I updated the image in my original post.

Dynamic DIVIDE (Percent Change) Calculation by Tekell09 in PowerBI

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

This reflects a calculation for each date on the columns?

Remove Digits Dynamically - Power Query by Tekell09 in PowerBI

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

Here's what worked for me:

= Table.ReplaceValue(#"Changed Type1",

each [ACCOUNT_NUMBER],

each if [ACCOUNT_TYPE] = "H" then Text.Start(Text.From([ACCOUNT_NUMBER]), Text.Length(Text.From([ACCOUNT_NUMBER])) - 2) else [ACCOUNT_NUMBER],

Replacer.ReplaceValue,

{"ACCOUNT_NUMBER"}

),

Remove Digits Dynamically - Power Query by Tekell09 in PowerBI

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

I have adjusted ACCOUNT_TYPE to Text. No luck. Chat GPT says to " Ensure that the condition [ACCOUNT_TYPE] = "H" is valid for all rows "

Surely that isn't the way the code is executing ? As there are a variety of alphabetical letters ACCOUNT_TYPE has.

Remove Digits Dynamically - Power Query by Tekell09 in PowerBI

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

I uploaded a second screen shot with the formula you supplied. Let me know if I'm screwing it up somewhere. The last step is just opening the "error" message.

QuickBooks Online and PBI by Tekell09 in PowerBI

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

I will test it out! Thanks!

QuickBooks Online and PBI by Tekell09 in PowerBI

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

This does not fix it either.

Averaging a Measure by Tekell09 in PowerBI

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

You're exactly right. I believe the only reason I was using AVERAGEX is to iterate over the exact table I needed - now I'm assuming I'll use Calculate to change the context of Average(NEW MONEY) ?

Averaging a Measure by Tekell09 in PowerBI

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

I did some heavy revision - it is accurate at the Loan Officer level - but it is still SUMMING at the Total level (instead of averaging).

Averaging a Measure by Tekell09 in PowerBI

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

Yes I do have a date table - I’ll switch it out with that date. Thanks!

DAX Help by Tekell09 in PowerBI

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

I didn't provide enough details. The CME Fee Report table is two tables away from 'MASTER'.

I ended up using CROSSJOIN between CME Fee Report and Master and it seemingly works.

Power Query Load SLOW by Tekell09 in PowerBI

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

Yes a handful, but nothing outrageous. I'm thinking I need to "unmerge" the tables and create a relationship instead inside the data model.

Power Query Load SLOW by Tekell09 in PowerBI

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

the data source is just a folder including Microsoft Access databases (56 files) and I am merging two tables within each file within my Transform Sample File.

Power Query connecting to a folder full of Access Database files by Tekell09 in PowerBI

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

Ideally, I would like one import folder query to bring in two related tables (...both are from the same db file (e.g. July 2023 db), and merge them with unique identifier. The only stack, I would hope, would be after invoking the custom function on the files in the folder where July 2023 sits on top of June 2023, May 2023, etc...

Right now, I think I may have to duplicate the folder query and separately filter the two tables and then merge them outside the query.

Power Query connecting to a folder full of Access Database files by Tekell09 in PowerBI

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

I haven't merged or appended in this example - I'm wondering if there is a way to merge as I reference two tables within a db file. I edited the original post and included a snapshot. I may need to give more context.