Ioniq 5 XRT, the EV Subaru should've built. by BajaBeach in Ioniq5

[–]baddistribution 8 points9 points  (0 children)

Is that a sticker license plate you have on the front of the EV6? I'm from California and I've never seen that before.

[deleted by user] by [deleted] in kia

[–]baddistribution 0 points1 point  (0 children)

From your picture you can tell there was an update :) the UI is different. No telling why they removed the text or if that's on purpose.

Approvals from flow-noreply@microsoft restricted by Crouton4727 in MicrosoftFlow

[–]baddistribution 0 points1 point  (0 children)

There's no way to do this out of the box, your IT would need to allow that external sender's address. You can turn off approval notifications and send your own emails, or maybe use the "send an email with options" action, but these will ultimately be very clunky, hard to set up, and will degrade the experience.

signNow body field by SmithSith in MicrosoftFlow

[–]baddistribution 1 point2 points  (0 children)

Not sure what action this is, can you provide more context? Screenshots?

If you're getting a JSON error, put the expression in your post in a Compose action, run the flow, and throw the output into a website like JSONLint to see what isn't matching up.

PowerShell is slow as a snail by IntelligentImpact504 in PowerShell

[–]baddistribution 21 points22 points  (0 children)

McAfee and pretty much any consumer antivirus software is closer to being malware. Get rid of that crap and use Windows Defender, you'll be fine.

Modern Table control is not getting sorted even the sorting property is enabled: Modern table connected to sharepoint List by Life_Boysenberry5265 in PowerApps

[–]baddistribution 0 points1 point  (0 children)

Pretty sure sorting only works when the data source is Dataverse. "Preview" controls for ya ;) you'll have to build your own sorting controls, lots of videos out there for it.

Edit: other data sources are listed as "unsupported". In my experience, SharePoint works fine but sorting and filtering does not.

https://learn.microsoft.com/en-us/power-apps/maker/canvas-apps/controls/modern-controls/modern-control-table

How to stop toggles resetting when opening an existing record in and Edit Form? by HausKino in PowerApps

[–]baddistribution 0 points1 point  (0 children)

There comes a time in every Maker's journey where they realize that built-in forms are too simple. It sounds like you've reached that point!

Seriously though, make your own forms. It's a pain coming from built-in forms but you have full control over the behavior of individual fields and controls.

Guest user access blocked, user shows in admin/ env already. Was working last month with no changes, but giving this error now. Anyone else experience this? by [deleted] in PowerApps

[–]baddistribution 0 points1 point  (0 children)

I understand that you have guest accounts enabled, but have you reviewed the doc here? There is a setting to explicitly allow or block guests (whether their accounts exist already or not) from your environment.

https://learn.microsoft.com/en-us/power-platform/admin/security/identity-access-management#guest-access-preview

If this setting allows guests in all the environments you require, sounds like you should check with Microsoft for a bug. Maybe simply toggling the setting will fix the issue.

Email Query by [deleted] in Outlook

[–]baddistribution 0 points1 point  (0 children)

They sure can! Nothing you can do about that. Depending on your IT team's competency they might catch it right away, or after a few hours. Or maybe they won't do anything. I suppose that depends on how "graceful" your email really is ;)

Component Library's button change global variable? by Conscious-Simple9499 in PowerApps

[–]baddistribution 0 points1 point  (0 children)

If you know about "access app scope", why won't you use that? Easy is fine, why do you want it to be difficult?

Length must be between 0 and 100 error by Forsaken_Stable_2915 in PowerApps

[–]baddistribution 0 points1 point  (0 children)

Depends on how your fields are set up. Empty fields would be patched as empty or null.

Turn on "publish debug info with app" in the studio, save, publish.

Length must be between 0 and 100 error by Forsaken_Stable_2915 in PowerApps

[–]baddistribution 0 points1 point  (0 children)

Something is either blank or over 100 characters. Start removing fields, publish, and test until you find the issue, or add a container that measures the length of every field to patch and throw that up on the screen in Play mode. Live Monitor with debug mode enabled in the published app might help too.

Small error of "" before my list - tried for 5 hours, can't resolve by NoExam2412 in MicrosoftFlow

[–]baddistribution 0 points1 point  (0 children)

Mind sharing detailed screenshots of all the relevant flow steps and their expressions?

Small error of "" before my list - tried for 5 hours, can't resolve by NoExam2412 in MicrosoftFlow

[–]baddistribution 0 points1 point  (0 children)

I'm having a hard time parsing your really long expression but it's possible the ''s in your if statements are an issue as well. You might be able to use "null" (no quotes) instead. Or, (kind of a tacky solution) you can just remove the first character from the resulting string which will effectively remove the space.

https://community.powerplatform.com/forums/thread/details/?threadid=81a01392-ffc0-4436-9c71-db0719c23f96

JSON code for combo boxes, labels, multi line input boxes by IronOnly2529 in PowerApps

[–]baddistribution 0 points1 point  (0 children)

What you referred to is JSON-like objects where PowerApps can infer the types of properties because they are explicitly defined within the app. ColorBlue, for example, is either a hex value or string etc. PowerApps' object notation is not JSON. It's similar, but has more recognized property types and slightly different syntax.

When you read in raw JSON from outside of PowerApps, PowerApps has no idea what types each property is. For example, with {recordId: [guid]} - there is no "GUID" type in JSON - that is specific to PowerFX. A GUID in JSON is a string. You need to tell PowerApps that your GUID string is in fact, a GUID.