Skip to main content

Recherche Power Apps

Rechercher

251 - 275 sur 193 400

Power Apps Monitor Feedback discussion thread

Hi,   I seem to be having issues with Monitor where the feed and app will hang before a Navigate function, this seems to only be the case when using SaveData() or LoadData() calls. When these ...

Re: Image control functionality in Power Apps

Hi @Devendranath what exactly were you trying to do. were you uploading an Image or you are working with Image control in powerapps.   Perhaps you need to expantiate a little bit mo...

Problem with attachment

Hello, if created a app with a code for attachment + sending a mail in cc to the requester.  I use the formula {Attachments:AddColumns(RenameColumns(AttachmentControl.Attachments,"Value","Con...

Count of Records Within One Column

Hi all,   Looking to solve the below issue within Power Query, not so much with dax.   Hopefully the below illustrates the issue clearly.     Thanks, Jacob.  

Grabbing a product number from a cluster of text and then adding it to a new column

Hi, I have received this data set, and I can't seem to wrap my mind around how to extract the value inside the bracket [] (see example below) and add it to a new column.   Some points to note....

How to use Power Automate to get files from OneDrive>Azure Blob Storage>dataverse

Hi there,   Not sure if anyone has a flow created for this scenario, but I know it's doable. The scenario is that I need to have a file picked up from a OneDrive folder, that gets added to a A...

URGENT..web.contents in list.generate

I am using web.contents inside List.Generate. I want to run the loop only when I get response for the first api hit.   I meant the loop should only run when it gets response for the previous ...

Re: Transform Column issue

Yes indeed! I have found it super useful not only for the ReplaceValue part but as a whole. Thanks for taking the time to write and share!

Simple Apps for updating Sharepoint Lists, or searching lists so on. User OR App Licenses?

Hello,  I am looking for a clarification on the licensing wording from the power apps pages.  According to the wording on the page, the meaning could be misinterpreted.  &nb...

Re: Power canvas not showing the latest uploaded

Hi @Kiruthika02 , Both Name and 'Folder Path' are not Delegable, so that is your first issue. If you have your Delegation limit set to 2,000 and the newest 2,000 records will contain what...

Re: Pagination problem

@timlthank you for your reply paging is the problem have you solution?

Re: Cannot read properties of undefined (reading 'toString') - Postman Collection

I had the same issue. After some trial and error, though, I found out that the importer fails if the "code" attribute is missing from a response object or if it's value is null. It's missing for the ...

Re: Model driven App - Page not allowing to include Views exactly as created under tables

Hi @JCNags    You are adding page in model driven app so I don't think so we you can display data as you are expecting exactly because we are in canvas interface completely so better...

Missing solution and entity catalog creation error using Virtual connectors for Dataverse with Azure SQL Server

Hi all. I encountered some hiccups when setting up the virtual tables in Dataverse using Azure SQL Server in my production environment. I had one set up in a development environment and it works like...

Re: Image download from Dataverse for Teams

Hii @atroester , I had the same requirement to load the image data in the Power BI from DataVerse Image column but I was also not able to do this. Because when we add image in the datave...

Re: Zendesk Service Level Agreement metrics

Hi, You can also pull all ticket metrics (see list of fields here: https://aserve.atlassian.net/wiki/spaces/PBCFZ/pages/2562523184/Data+Schema ) with the help of Power BI Connector app.&nb...

Re: Sort Gallery issue

Hi @jsmith87    Can you share Columns names in table 9 please        

Pass name of function to a function - NOT as text

Greetings,  I am working on a PQ function to pull back the metadata for a chosen function (user generated, or #shared).  I am aware I can just as easily click in the box that says Functi...

Re: Sort Gallery issue

for some reason it wont work, is there a way to amend the formula so it patches the calculation back to my excel into a column called "Custom" I can then use that column to sort?   BingMaps.Ge...

Re: need help with patching multiple records in SharePoint list

@SimoneOS    Check if this make a difference   ForAll(ColApprovalwriteback As Approvals , Patch('testforecastlistforapprovaltesting-b65f2b8b-c51e-4034-8786-1e57d7781d90', Lookup...

need help with patching multiple records in SharePoint list

This should be so simple   I just need to update a column in a SharePoint list to approved when a button is pressed. this needs to be filtered by the sales manager so i created a collection w...

Re: Not Patching One Value

@WarrenBelz, you are correct, ProjectInput is a dropdown, there are 4 dropdowns in total, RREWInput, ProjectInput, RREWSelection, and  ProjectSelection. I have added the...

Re: Issue with April Dunnam's timesheet app, clears out Bill To item from previous line when adding new item

@vandam2 Two options Use collect instead of patch to add a new record to your datasource: Collect( newTimeEntry, Defaults(newTimeEntry))  Replace ThisItem with Defaults( newTimeEntry) i...

Re: Not Patching One Value

@Madhatter72 , Power Apps is not really that difficult when the correct control references are used. What is the Items property ProjectInput  and what type of field is 'Related RREW' in '...

Re: How to get all data in Dropdown with blank/empty default value.

@Learn2Live ClearCollect( ColYear, {Result: "ByYears"}, Distinct(Choices([@ByProject].Year)) )