Skip to main content

Recherche Power Apps

Rechercher

426 - 450 sur 193 448

BUG: Attachments control and Dataverse File fields

I have a form for a Dataverse table with several columns of type 'File'. In a Form, the Attachments control always seems to report the field has changed when the File is empty. Thus, Form.Unsaved() i...

Re: PowerBI.Dataflows vs PowerPlatform.Dataflows

Thanks for your reply however I am not really sure that answers anything, I have been using PowerBI Dataflows since inception so know them pretty well. What I am trying to understand is why they a...

Re: Filter dropdown with a column name equal to the value selected in another dropdown

Hi Nandini,    Thanks for taking time to find the solution. I don't think I can implement your solution as I have more than 50 columns like 2502 or 2800. I will still give it a try when I...

How to update Canvas Application input value from SharePoint list?

Hi,   I have a SharePoint list created, the data is updated via the code below which is added to the button OnClick event.     Patch( dataRecordSet, LookUp( dataRe...

Re: Power Query running total of the last 30 rows

It looks like you are actually wanting the following: Is the row in the last 30 rows of the table? If no, return null. If yes, return the cumulative sum for the last 30 days. This re...

Patch Blank() not working suddenly

Hi fellows,   My colleague and I have been using Power Apps for over a year and we are very familier with Patch function and putting Blank() in SP List columns. The code is just as simple as ...

Re: Reset items based on new search in filtered gallery

Hi @WarrenBelz  I think I've figured out a workaround where I add a || to toggle between a used and empty text box before filtering and so far it seems to have resolved the issue. Thanks ...

Re: how to filter a gallery excluding collection data

Try       Filter('PA007 Parking Spot', !ID in reservationsInDates)    

Re: Reset items based on new search in filtered gallery

@WarrenBelz sorry for the confusion, I tried to explain the situation as best as I could- the issue was not in the initial search, but what happened in subsequent searches after using the filter...

Re: Patching a Dropdown List

Thanks @Drrickryp ,   I have set that up however i am unable to type into that combo box and every time i clidk the ox itself, it creates a new blank record in my list.

Re: Expression.Error: We cannot convert the value null to type Number. mysteriously appeared

Right Click on the Column which has errors and Click on "Drill Down" which removes Error.

Multiple choice and Visiblity

I have 3 choices in my Combo box. I am having issues with if i choice "Single" to only show those boxes. If i choice "Three", only three. If i choice Subdivision, Only Subdivision shows.  ...

Re: Solutions stored in source control noise

Hi @Andrew7 ,   I'm noticing (and have been for a while) that the GUID in the uniqueid attribute in FormXml differs in case.  See example below.   Should it be upper o...

Saving captured image to onedrive for business instead of Azure APIM

After searching my problems in this forum and the results are 0 so i've decided to make a new post. i've been developing powerapps and trying to create an app that save captured photo to onedrive. In...

Re: Copypaste between PowerApps applications does not work anymore

Hi @Omppu, Could you please tell me that what you want to copy across apps?   Actually, I have a test and the situation is confirmed on my side that the control including it’s styling...

Re: Learn more about AI Builder and Integration in Power Automate

Hello Joe, Yes,  I was struggling to save the edit form when we used the pre-built AI for receipt scanner,...

Re: Adding images to email body from powerapps

You can use BASE64 encoding to display your picture in email   At first, create a variable encodedPicture and use JSON function to convert picture into base64 encoded string   Set(encod...

Search records over 2000

Hi Experts,   I have a powerapps that is looking at a SharePoint list and it's searching the records using the below code. The SharePoint list has now exceeded 2000 records and we aren't able ...

Re: Why Collection Create Table at of value in power apps

Hi @Rsalame, If so, you just need to remove the columns using DropColumns() function like below: DropdownColumns(COllections,"TableColumn")  

Re: Reading value from another Sharepoint list base on dropdown list value

Hi @Ajwou , Assignee Name is which type of column in your SP list (single line of text or person & group - single/multiselect) ?  

Re: Search records over 2000

Hey @Dave-ITMan,   As @SebS said, those two portions of your code are not entirely delegable, however, you can wrap an inner delegable filter inside of another filter that is ...

Re: Power BI & narrowcasting

Hi @hukkelbie ,   Please take a look at the discussion in these threads, hope it helps. Power BI Power BI   Best Regards, Gao Community Support Team   If the...

Re: Creating Graphs from SharePoint List

@v-xiaochen-msft Thank you so much it worked

Re: How to LookUp and Patch more than one row in Lists

@v-bofeng-msft Thank you very much, your method worked exceptionally, and the guidance on the error is well understood. Great feedback and support  👍 .

Re: Search records over 2000

@Dave-ITMan    StartsWith('Created By'.DisplayName, SharePointSearch_3.Text)   Created By is a complex type column Person or Group means the StartsWith is not Delegable in that sce...