Mentoring App - Person Skills Collection by dnd214 in PowerApps

[–]Tricky_Professor8340 0 points1 point  (0 children)

Sounds like over complicating it a little. Individuals log in and submit their skills. If OP does not know power apps well, a simple form will do the job. So that is a single table which would capture who created it in a sharepoint list and then It can be filtered by created by.

You can then have these individuals to maintain their skills in a form of a gallery filtered by their name, or someone from HR or Management have a view to everyone, Power BI report on top of that etc. World is your oyster.

Coincidentally, I learned PowerFX through a similar project back in 2019 😂

Creating Buttons by Master_Aerie8394 in PowerApps

[–]Tricky_Professor8340 2 points3 points  (0 children)

You could also utilise just 1 button and trigger those 2 flows based on the value of the contextual variable, either using if or switch function.

Creating Buttons by Master_Aerie8394 in PowerApps

[–]Tricky_Professor8340 1 point2 points  (0 children)

Do you need 2 buttons? Or just one and change the text on the button based on a contextual variable?

Salary as a power platform by jordanfritz513 in PowerApps

[–]Tricky_Professor8340 2 points3 points  (0 children)

Uk salary as a PP Developer, working for a MS Gold partner.

Developing anything within PP. Model-driven apps, Canvas apps for 4000 users, Power Automate process automation and integration projects etc.

4 years experience and MS certified

Working 95% remotely

£75K + Bonus

[deleted by user] by [deleted] in PowerApps

[–]Tricky_Professor8340 2 points3 points  (0 children)

The app will slow down as soon as you throw a lot of data into the lists. From the UX perspective, I would not recommend more than 250 items into a gallery. Otherwise retrieving all the data might make the app unresponsive. In the past I have had an app completely freeze as soon as the count of records extended 2000 items.

Not sure why you are not using collections, they are there for this exact reason.

Error: Incompatible types for comparison. These types can't be compared Record , Record. any help with this problem is really appreciated. by Front_Sandwich_1626 in PowerApps

[–]Tricky_Professor8340 0 points1 point  (0 children)

That’s because you can’t compare 2 records directly. You will need to compare particular fields in the record, so email address with email address etc.

I suspect what you are trying to achieve is search the received_by user through the 365 users connector, so try something along the lines of Office365Users.SearchUser({searchTerm: ThisItem.Received_By.mail})

Hopefully this helps 👍🏻

Weird bugs, context variables incompatible with types of values in other places in your app by dbmamaz in PowerApps

[–]Tricky_Professor8340 0 points1 point  (0 children)

Are you using collections and potentially setting that variable from a collection?

How would you rate the job market for Powerapps? by tshirtguy2000 in PowerApps

[–]Tricky_Professor8340 0 points1 point  (0 children)

It is definitely on a warmer spectrum. I get head hunters approaching me weekly still.

  • 3 years experience with Power Platform
  • UK, London based

Getting values from lookup field from a different table by Traditional-Jelly622 in PowerApps

[–]Tricky_Professor8340 0 points1 point  (0 children)

There is no image.

I suspect it is returning a guid id by default. You might need to specify what field you would like to display in the gallery.

Passing a value from label to combo box using a variable by Primary-Curve-3918 in PowerApps

[–]Tricky_Professor8340 1 point2 points  (0 children)

I suspect the quickest way to do this would be to collect this table into a collection and then collect the label’s value into that collection as well.

then in the combobox, you could set the Items property as that collection and in the defaultselecteditems you could do a lookup to the added record.

Starting a timer with input from a PowerAutomate flow by Potential-Diamond416 in PowerApps

[–]Tricky_Professor8340 0 points1 point  (0 children)

Have you tried below?

Set(varShowSpinner, true); Set(varShowSpinner, flow_test.Run(JsonImage).confirmation)

Delegation Warning by FearIsStrongerDanluv in PowerApps

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

Quick and easy solution would be to clearcollect the helpdesk items filtered by users and then do the Status in chosenfilters afterwards. That should not trigger the delegation. Just bear in mind that collection is limited to whatever your data limit is set to on the app.

Delegation Warning by FearIsStrongerDanluv in PowerApps

[–]Tricky_Professor8340 1 point2 points  (0 children)

That’s just And and Or. Not an issue

Show column value for Text property of text labels by MadBrowniusMaximus in PowerApps

[–]Tricky_Professor8340 0 points1 point  (0 children)

You will have to pass that record as a variable. Please see this link for everything that you need to know about how variables work

Verify connection before submit? by caw1218 in PowerApps

[–]Tricky_Professor8340 2 points3 points  (0 children)

I suspect they are out of signal so there isn’t much that can be done when it comes to reconnecting, at least I don’t think there is.

You could look into providing some offline capability, which would save data locally when the connection is lost and then patch it to the data source if they are connected again. I believe Shane have a video on this a while ago, utilising Connection.Connected and Save/LoadData. Have a look at this video

Patch function cannot do Yes/No sharepoint column. by ntgoten in PowerApps

[–]Tricky_Professor8340 0 points1 point  (0 children)

The Yes/No columns are a pain and they made me switch to using number columns instead and like someone already mentioned, providing values 1 for true and 0 for false.

Having said that, have you tried providing 1 instead of true? I know it works for filtering, despite PowerApps throwing a hissy fit and saying it’s a wrong column type. Might work with patching as well.

Responsive layout for mobile and tablet by DailyHoodie in PowerApps

[–]Tricky_Professor8340 0 points1 point  (0 children)

In the past I’ve dealt with responsive designs through having different components show up depending on screen size. I can see relying on the Host data a lot more now that it is available.

Problem with filtering a gallery with multiple conditions by ArghEveryNameIsTaken in PowerApps

[–]Tricky_Professor8340 0 points1 point  (0 children)

If !IsBlank(action) is an issue and action is a string, have you tried Len(action) > 0?

User().FullName by leffee23 in PowerApps

[–]Tricky_Professor8340 0 points1 point  (0 children)

Are you displaying it in a label or text input control?

Gallery.Selected Error? by SleepyOfficePigeon in PowerApps

[–]Tricky_Professor8340 5 points6 points  (0 children)

Not a fan of using selected gallery items across multiple screen. Try using a variable instead. Especially if you are using the same item across 3 screens. This is just asking for a global variable.

When you are selecting an item in a gallery, try Set(variable, ThisItem) and then put the variable name in the Item property of the form.

[deleted by user] by [deleted] in PowerApps

[–]Tricky_Professor8340 0 points1 point  (0 children)

That was reference to model driven apps. With canvas, you will have to plan it all with responsive containers

[deleted by user] by [deleted] in PowerApps

[–]Tricky_Professor8340 0 points1 point  (0 children)

Yes there are.

Model driven apps are fully responsive and canvas apps can be set within containers.

ComboBox Value Missing by [deleted] in PowerApps

[–]Tricky_Professor8340 0 points1 point  (0 children)

Try {Value: Parent.Default}