Power Apps Search
البحث
Power Fx: String interpolation, Index function, and RandBetween function
المدونةPower Fx has added three great new features. String interpolation enables expressions to be embedded within strings, making it easier to combine parts of a string into a whole. The Index function does away with Last of FirstN patterns. The RandBetween function makes it easier to work with integer random numbers.
Hearing Australia – Audiologist adopts Microsoft Power Platform to transform hearing loss prevention program
المدونةHearing Australia is Australia’s largest provider of government-funded hearing services and have been servicing people with hearing loss in Australia for 75 years. This is an inspiring story that features Jacqui Peck, an Audiologist who taught herself Power Platform while visiting remote communities in the Australian outback. She partnered with the ICT team, as a fusion development team, to transform one of their key programs for hearing assessments. The solution was built using Dataverse, Power Apps, Power Automate and Power BI. Over 100 Community Engagement Officers and Audiologists use it each month and it has become a single source of truth for program data. This has also helped secure continued funding from a government grant.
Runtime localization support for Code components on Custom pages and Canvas apps
المدونةRuntime localization support for Code Components on Custom pages and Canvas apps
Power Apps Ideas: New enhancements and increased capabilities
المدونةAfter we announced public preview of Power Apps Ideas, including writing Power Fx formulas with natural language and generating formulas from examples, we continued tuning the design and improving our AI model to make Ideas work better for you. Today, we’re happy to share some of the latest updates on Ideas with you.
Power Platform Developer Tools Dec/Jan Refresh (Sovereign Cloud support)
المدونةThe Sovereign Cloud support for Power Platform Command Line tool
Re: Attachment field isn't saving to SP list using Patch
Hi @RMD211 , By automatically updating I mean referencing a DataCardValue in another form control for the Default property. Can you please describe what you tested and...
Re: Combobox Choices Changed
Hi @jneuen , In that case I suggest to use the AddColumns function in the Items property of the combo box: AddColumns( NumberDataSource, "LocationName", LookUp( ...
Re: Name a document in FLOW using data from power app?
Thanks ccg_apl I did try pass variables but was unsure how to call them in file naming. For example i had a variable FileName and passed on submit button with body of html. But i could not figure out...
Refresh rate cached Count total record of Dataverse Table
Hi All, As the documentation does not say how often the cached count of the total amount of records in a table refreshes. Does anybody here knows? Best Regards, Anthony
Re: Name a document in FLOW using data from power app?
I don't know what action you are using to create the file, but using input parameters is straightforward. This is an example of creating a SharePoint file. In the Create File action, click in the Fil...
Setting User Permissions in App
I have the following scenario: user 1 is using a canvas app to create a record They then want to give access to the record to a group of users - some of whom will only have read, but others...
Re: Patch OnChange Items only - check box gallery
I would want to be patching the changes to CollectionChanges, not OccAll, otherwise I'm going to end up having to patch every record to SP, like I currently am. When I use this code on the O...
Re: Is there any way to Trim all the Column Values in Power query in one shot?
This is the simplest and most dynamic solution
Re: Auto Populating a Field
@Appy1 I can't answer the first question but User().FullName to fill in the logged in user.
Exclude value from a dropdown list
I'm drawing dropdown items from a list(column called "Category" and trying to exclude from the dropdown: The value is called "Non-Standard Sourcing Services" Sort(Disti...
Re: Exclude value from a dropdown list
Hello please try this Filter( YesDeskCategorySubCategory,Category "Non-Standard Sourcing Services")
Re: Conditional Form Card Visibility Layout
Hi @JMerk , No to the second question (the order of data cards is only set in Design Studio). For the first one (as I posted), put a Custom Card with the width the same as the Form and 1 ...
Re: Patch using lastSubmit.ID and Another Records from another Table
@NickUSAF , Did you look at my post - firstly you have ForAll() backwards - the function creates a Table (it is not designed to be a loop, although can be used in this way with significant per...
Auto Populate a field based on Multi-Select Combo Box
Hi Community, I have a SP list with Name and their respective email ids. I want to auto populate the email IDs whenever a name is selected from the combo box. The combo box is set to multi s...
Re: Avoid duplicates
Hi @Blaest , Firstly, that code is not Delegable, so will only act on record numbers up to your Delegation limit, but it is checking if a field value (in this case in a Text Box) already ...
Bring Microsoft 365 collaboration to your model-driven apps
المدونةCollaboration controls (Preview) enable you to easily add M365 capabilities to your Power Apps line of business custom applications to simplify user workflows when collaborating on business processes in Teams or Power Apps.
Creating canvas apps as Dataverse solutions by default (preview)
المدونةWe are excited to announce the release of Canvas apps creation as Dataverse solutions by default in public preview
Re: Sorting Gallery Issues
Tried that, too but to no avail.
Re: Making three fields required in a canvas app using if statements
@ianallen13V2 , That is useful information - the issue is the output of your combo boxes (not the code logic, which is correct). What are the Items properties of the Combo Boxes ?
Re: changing dynamically Item Gallery.Selected
@thinkfire In the OnSelect property of both of your galleries: Set(vrecord,ThisItem) and in the Item property of the form: LookUp(yourdatasource,ID = vrecord.ID)