Skip to main content

Power Apps Search

Search

376 - 400 of 199,057

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)

Re: Rollback Solution

Thank you for the response. I tried one way but not sure if it’s supported or not. I have the previous version of solution zip file. I’ve extracted it, updated the solution.xml file by incrementing t...

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 ...

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: limit choices in person field

Hi @Sujimon ,   I've made a test but did not encountered the problem you mentioned.    Best Regards, Bof

Re: How do i format the column to date format called 'created' in sharepoint ?

@Jupyter123  Do you want to format SharePoint backend or in PowerApps?  For SharePoint just apply this Format this column    { "elmType": "div", "style": { "paddin...

Re: Displaying Shapes in a Gallery

Thanks again, @v-bofeng-msft!   Here's how I ultimately approached the problem.   I created a collection (colNewID) and added a column called "AutoNumber" to store the new ID: ...

Re: how to restrict a text box or a submit button after more than 10 times in power apps

Hi @zmansuri , I use power automate for integrating external API in the backend. I use sharepoint list for authenticating username and password. Pls note that i created a variable called varU...

Selecting second-to-last records from a SP list

Hello, from the image below, I wish to select the Time (1) of the second-to-last item on the SP List. Here's what I've applied (With({_dateF:Split(First(Sort('SPListName', Created, Descending)).Date...

Re: Cannot set environment variables during import

Hi,   In your development environment, before Exporting the solutution you have to delete the Current site value from ' Sharepoint Site - development'. Go to Soluton > Environment variables...

Re: Gallery scrolling performance issues

It is possible to increase the amount of records that stay loaded in a gallery. This decreases loading times a little but helps when scrolling up and down as nothing visual is being updated by the re...

Re: Modern Advanced Find - Features for selection of records in Lookup fields are no longer available

Hi @MargotMadge    You can create a new idea through the below URL, then ask your colleagues to raise up the votes.   Power Apps Ideas (read only) - Power Platform C...

Re: Galleries snapping to top row

Thanks all, I've republished some of our apps and this seems to be working! Need to work through the rest now. 👍

Re: DatePicker disabling

Hi @ThabangR , You can use a variable to set date picker to blank value. On radio button's OnChange property - If(Self.Selected.Value = "Yes",UpdateContext({varBlankDate: true}),Upda...

Re: Dropdown list: allow "fill-in" choices?

nice share, i manage to extend your code to accept multiple option. thank If(IsBlank(YourComboxBox.Selected.Value),[YourComboxBox.SearchText],YourComboxBox.SelectedItems)

Re: Seniority in month

Hi @FranckGbadamass ,   Can you provide some anonymised example data, and clear examples of what your required outcome is please?   https://community.powerbi.com/t5/Deskto...

Re: Merging data from multiple files - Best solution?

Hi @ClementR ,   You can use combine file in query editor. Put these three files in one folder and connect to the folder via Power BI.    For detailed steps , you...

Filter icon not showing properly in dataverse Main grid view

Steps to reproduce the issue and it is applicable for that table alone: 1. I am doing a filter in the main grid 2. Opening the record in Main form 3. With the help of custom command and xrm.Nav...

Re: Use single Slicer to filter rows for multiple date column

Hi @kaushikhalvadia ,   I'm detecting an XY Problem here. Can you give details around what metrics/values you want to be able to calculate in your report please? It's most likely...

Re: Help with filtering a gallery

That's brilliant,   Thank you so much    Is it ok if I tag you for further help in other questions, as working with SQL is proving somewhat challenging, and I find not everyone is ...

Re: Add Specific Column to an existing Collection

Hello, If your new column's data is avaiable at your ClearCollect() step, you should include it in this clearcollect :   ClearCollect(CorpDevices,AddColumns(APIManagedDevices.GetBetaDevice({'...

HTML Control link to mailto

Hello community. I was wondering if this is possible? I have a Html Text control and inside some text and a link with "mailto:person@email.com". When I click in the link the app open the mail cli...

Re: Set Checbox visibility based on value in other DataCard

Hi @EJ_002 ,       Thanks, Chitrakant27