Skip to main content

Power Apps Search

Search

6,201 - 6,225 of 193,448

DateTime Picker inconsistent in Patch function

Hi everyone,   I hope you can help me with my issue related to my Dataverse patch query for a date-time column, which is triggered in response to an OnChange event from a date-time picker. Whi...

Re: Multiple Choice Check Box for Gallery

Hi @RJF61    In the OnCheck property of the check box. If you have any questions or feedback, please let me know. Have a great day! 😊 ----------------------- PowerYsa Powe...

Re: Bugs: 3.23104.18 and Later - OnLoad and Forms

Have you found any solution? I have also encountered this issue. The global variables in onstart of the APP are giving the errors.

Re: Merged Queries Fails

It ended up being a blank value, I filtered out blanks and the problem went away.

Re: model driven app with custom page: show CRUD form

well finally I found the answer as a starting point for newbies:   source: https://www.youtube.com/watch?v=QE3BUzjbnA0 Power Apps: Display Form Darren Neese, Microsoft MVP, PowerApps Tutoria...

Re: nest and iferror inside and if

@realwillwright thanks for the reply.. this formula which have IfError inside If condition is not working for me:-       If( IsEmpty(colErrors), IfError( Submi...

Re: Restrict canvas app pages to certain groups

Hi, check this blog from Dhruvin Shah.  Get Users Or Members From The AD Security Group In PowerApps (c-sharpcorner.com) Collect the members of your security group and then check if the...

Re: CVS files - How to combine? Different headings & various colums

You will want to ingest the CSV files separately and unpivot your data.    You would then end up with a fixed size table that has the week number as an attribute rather than a column. ...

CountRows( Gallery1.AllItems ) DOES NOT WORK!

CountRows(Gallery1.AllItems) is supposed to return a count of all items in a gallery, not just the first 100.  However, this appears to be broken always shows 100.  This has been suggested ...

Re: SharePoint Integrated PowerApps Form - Error: "The specified column is read-only and can't be modified".

Thank you for the suggested methods to correct the issue. I've gone through many and have yet to be successful with it. Currently my only diagnosis is that something was corrupted during some of the ...

Need help with changing the color of text in HTML code based on a condition

Good morning,   Would like some help with the below: I have a powerapps app that generates a email with HTML text. In that email I need the color of the text to change based on a condition. ...

Re: Custom Column Based on Distinct Count

if Table.RowCount(Table.Distinct(Fragenkatalog, {"ColumnName"})) <5 then "Keine Auswahlmöglichkeit" else  [Organisationseinheit]   --Nate

Deployment of a solution from Unmanaged to managed Failed

I have a App in the development environment under unmanaged solution and the same app was previously developed by some other company and in the test environment the app is under unmanaged solution. S...

Re: CountRows( Gallery1.AllItems ) DOES NOT WORK!

Hi @subsguts,   Delegable functions or direct links to datasources will load in batches of 100 within the gallery control. Exceptions to this rule would be collections and non-delegable...

Re: Merging Date To Date fields fail in Power Query

It is merging, it is just saying that no dates in the 27 records of the first table exist in the second table. Have you validated that records exist to match? Also, can you confirm the culture is ...

Re: Convert Unmanaged Solution to Managed In Place

This approach creates a new AppId for the app in the solution. I want to maintain the current AppId.  Do you know if I can have both Dev and Prod be unmanaged and deploy changes from Dev to P...

Re: How to select column JSON using native Query in MongoDB SQL Connector

mongodb - can i parse JSON in a mongo db query? - Stack Overflow

Gallery Drop-Downs Resetting Down-Page

From time-to-time I have observed that a Drop-Down field in my vertical gallery which displays "down-page", i.e. not visible on open-- but have to scroll down to see, "resets". I have no idea why-- a...

small problem with label

Can someone please help me a little further, I have added a piece of code to my gallery but would like to only count these empty labels on today's date, because now it counts this label on all dates ...

Filter based on in operator and split

I have this formula:-       Filter(currentPrintDesign.Attachments, Left(DisplayName, Find(".", DisplayName) - 1) in Split(currentPrintOrder.'Artwork Description',","))   &...

Re: Using a service account for data connections

@aperea2539 Thank you! I will try that. 

Re: Merging tables with Condition in a large right table

Power Query doesn't work well across rows like this as you've found. Great for 10K records, not so much for millions. I think this needs to be done upstream in a relational database.