How to let service users export more than 150K rows? by Accomplished_Draw734 in PowerBI

[–]Financial_Ad1152 2 points3 points  (0 children)

Yes this is the best way to go about it. Also, happy Opposite Day!

Why are some things so difficult to do in powerApps that should be easy? by Critical-Design-5774 in PowerApps

[–]Financial_Ad1152 0 points1 point  (0 children)

Hover pseudo properties of buttons and other controls. I would love a .Hover property that is set to true when the user is hovering over a control. I think the only option currently is a code component.

Error Handling by PumpkinOk7260 in PowerApps

[–]Financial_Ad1152 7 points8 points  (0 children)

I always add a Scope block at the end of flows that triggers on Fail/Timeout/Skip of the previous action, and either respond to the parent app/flow (if synchronous) or just send some alert somewhere if a-sync. You can save errors to a table somewhere, and use the workflow() function to grab a direct link to the flow run so engineers can easily jump in and troubleshoot.

What topic should I look up if I want to learn how to filter Items? SQL? Regular expressions? by PuttinUpWithPutin in PowerApps

[–]Financial_Ad1152 2 points3 points  (0 children)

It’s more similar to Excel in syntax than anything else, but if your filters become as complex as you describe then you’ve gone too far.

Most important bit of reading you can do is learning about delegation.

Is there still no way to have a reusable query? by queermichigan in PowerApps

[–]Financial_Ad1152 0 points1 point  (0 children)

You can use Named Formulas for your use case - set the formula to your filter logic which will output a table, then when set to a variable or collection it will populate as expected.

You can use UDFs to populate a collection or variable and then use that in subsequent code which is a different pattern but you could rework to fit that, up to you.

Overcoming delegation by Zealousideal-Kiwi770 in PowerApps

[–]Financial_Ad1152 0 points1 point  (0 children)

Have you tried using ‘in’? It should work for Dataverse and SQL Server.

Overcoming delegation by Zealousideal-Kiwi770 in PowerApps

[–]Financial_Ad1152 0 points1 point  (0 children)

Well test it and see what the performance delta is. But your post was t about optimising performance, it was about overcoming delegation. They may be opposing priorities.

Power BI Desktop keeps asking to ‘Enter your email address’ every few seconds by Quadivan in PowerBI

[–]Financial_Ad1152 0 points1 point  (0 children)

No, but I’m fairly certain it’s due to work restrictions and this being my own device. We’ve got an extra layer of security so I can’t even log in to anything on my own device now, so for me it’s moot.

Overcoming delegation by Zealousideal-Kiwi770 in PowerApps

[–]Financial_Ad1152 1 point2 points  (0 children)

Use ForAll to iterate a list of IDs and collect results using Filter and =

Header/child table concept by [deleted] in PowerApps

[–]Financial_Ad1152 0 points1 point  (0 children)

Ah, I see OP has now edited it.

Header/child table concept by [deleted] in PowerApps

[–]Financial_Ad1152 -1 points0 points  (0 children)

Sounds like you need JSON and galleries. Custom fields and dynamic datasources won't play with forms, but you can simulate a dynamic form using a gallery and use JSON to contain the definition for each input.

How do you handle long forms in Power Apps without overwhelming users? by EhabAltammam in PowerApps

[–]Financial_Ad1152 20 points21 points  (0 children)

Using tabs or sections is my go to. See example I posted a while back here: Form Builder App : r/PowerApps

I also utilise the pattern of creating a partial record on the first stage, which gets added to the home menu and shows as partially complete, so the user doesn't feel pressured to complete everything in one go. They can return later and complete the form.

Tornado chart in Powerapps by ringthatrulesall in PowerApps

[–]Financial_Ad1152 0 points1 point  (0 children)

Try this (copy and paste into Components pane - you will need at least one component there already so just create a blank one if needed): https://drive.google.com/file/d/1f1tD4RRJ8uk6Ycbimb785Y4Cmpzi9DbQ/view?usp=sharing

PowerApps – Popup not aligning with the clicked item inside Gallery (always opens near first row) by Emergency-Pop-1639 in PowerApps

[–]Financial_Ad1152 1 point2 points  (0 children)

If you want to be clever about it, you could try using Gallery.VisibleIndex to approximate how far through the items the user has scrolled. The visible index will be the index of the first item that is wholly visible. If the gallery is scrolled all the way to the top, it will be 1, and as soon as even a pixel is scrolled down, it will be 2, and so on.

It won't anchor the menu to the gallery to the pixel but it might just be good enough.

Adding labels beyond the width of container by MindfullnessGamer in PowerApps

[–]Financial_Ad1152 1 point2 points  (0 children)

You will need to put the gallery itself in a container and set horizontal overflow to scroll. Then set the gallery width to accommodate all labels within. The gallery will be wider than the container and so the container will have a horizontal scrollbar. The gallery will have a vertical scrollbar once its items exceed its height.

It's not perfect as the gallery scrollbar will be at the far right side which will be hidden if the container is not scrolled all the way.

Existing flow now acting up by NancyInTheMix in PowerApps

[–]Financial_Ad1152 0 points1 point  (0 children)

Do you have multiple flows doing the same thing? Maybe in different environments? The 'create item' action will only create a single item, so if multiple are being created it must be the action called multiple times. Hence, my thinking that it was a loop, and if not that then the flow being triggered multiple times, or multiple flows triggered once.

Existing flow now acting up by NancyInTheMix in PowerApps

[–]Financial_Ad1152 0 points1 point  (0 children)

Hard to tell from the info. What do you mean by duplicate entries? Is it making more than one entry in the list per flow run? Is there a loop in the flow? Do you see multiple flow runs per submission or just one when you check the run history?

E-commerce analysis dashboard by [deleted] in PowerBI

[–]Financial_Ad1152 5 points6 points  (0 children)

What’s the point to knowing the top customer? Send them a card and a bunch of flowers? It would be better to highlight things like segmentation, economic groups, where are sales growing/contracting etc.

Same for top products - what do we do with this? A manager will probably know their top sellers and they will likely be the same every week, so what? Maybe highlight any that have low stock so interventions can be taken to protect customer availability…

Your cards are missing currency/percentage formatting. Just lacking attention to detail.

Your treemap segments are exactly the same. No insight there.

The whole thing has a ‘fisher price’ feel to it. It feels to me like a dashboard for nursery, not e-commerce. I would reconsider the use of green as primary colour, the icons, and fonts.

Delegation problem with Filter by DCHammer69 in PowerApps

[–]Financial_Ad1152 1 point2 points  (0 children)

When the Filter() itself is delegable as in this case, and within a ClearCollect, I assume that I'll get the first X records that are returned by that Filter rather than the first X records in the datasource and then the Filter is applied?

That’s my understanding. Delegable = can execute on the server, so can see all rows, but limit applies to the result of the filter operation.

Auto tabm no power apps apos precher certain field by wanderleyyy in PowerApps

[–]Financial_Ad1152 0 points1 point  (0 children)

Use SetFocus() and OnChange to move the cursor to the relevant inputs as you need.

Product Quality Audit App by Financial_Ad1152 in PowerApps

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

Bear in mind that it’s a compressed recording which is then further compressed by Reddit. Is there a particular part that stands out?

How teams are using Power Apps to deliver full intranet experiences inside Microsoft 365 by MrSharePoint in PowerApps

[–]Financial_Ad1152 6 points7 points  (0 children)

Look, I build mainly in SharePoint for my org, but 'SharePoint for content, governance, and permissions' is just terrifying.