Skip to main content

Power Apps Search

Search

676 - 700 of 193,516

Re: Excel Power Query - Removing Keywords from Text

Hi @Coffeyamc ,   There's quite a bit to digest here, but it feels like an XY Problem. Why don't you start by using Text.Split on spaces, so you have a list of words that you can...

Re: Removing an item from dataverse datasource

@user391_    The code below will loop over the collection and remove all records from the data source that match the criteria: ForAll(colName, RemoveIf(DataSource, UniqueField = This...

Fetch data from another list in list form

Dear community, I have a choice column Claim with certain values in production. I now want to create a list that will have all these values in another list with additional column URL. I want to get t...

Enviroment PowerApps

Hi Everyone, I Would Like to know if I need be admin to edit an environment in Power Platform Admin Center. Because I not found the standard enviroment of the my PowerApp

Permissions issue on long existing app

I have an app used by my whole school that has suddenly started having permission issues. The app is backed but data stored in a SharePoint / Team site. No permissions changes have been made to app o...

Re: Data Not Appearing in Excel Data Source

Excel is not a terrible data source. It has been working fine for me until I switched it to view text. Under edit fields you can select how the field for your text is displayed. I had it as allowed v...

Usage of auto timer in screen makes scroll bar go to top

I have created an app with 3 different screens. In the first screen I am using a timer with refresh function and auto start set to 5 minutes with repeat.   If I am in edit mode in screen 3 in...

Re: Create a Feedback Loop

You'll need to store the feedback somewhere... what is your data source?  If this is something like a SharePoint List, you can make a few columns for the feedback.  Example:   Iss...

Re: Reset PowerApps Cache on Exit

Hi @VanceLeeMeurer , Unfortunately not possible automatically, but you could have a process that when a user signs out, before they hand over the device, they clear the cache. I had a sim...

Re: Can UpdateContext switch radio buttons?

@DGWolfe  You don't need a variable to accomplish your goal.  Assume your radio control has 3 choices, say "Apple", "Banana", and "Carrot" You would set the visible property of gallery1...

How to Create Multiple Tables with the Same Name in Dataverse

Hello my dears! I recently purchased an Microsoft 365 Business Basic subscription to make use of Microsoft Dataverse with Microsoft PowerApps. I am in the "default" Environment and have crea...

Re: Can UpdateContext switch radio buttons?

Hi @DGWolfe , You can set a Variable on each button UpdateContext({varShow: 1}) and so on for the other 2,3, 4 etc - then the Visible of the Gallery varShow = 1 and the same ...

Re: Adding a step in Power Query (desktop) breaks query folding when source is a dataflow

Take a look at the Advanced Editor to see the different navigation steps. You can insert one or more text parameters in place of the hard-coded workspaceID, dataflowId, and/or entity. Pat  

Form Processing - Multiple Page Tables

Hi, I've tried training my model with 21 different documents. It seems to extract the table ok for the first couple of pages but once it gets to the last page (3 or 4) it always seems to skip some fi...

Re: Use Lookup to find data from Sharepoint list

Hi @Aaron_Huff , Firstly, you can shorten all that to If( IsBlank( LookUp( 'UserDB', TagID = ReadNFC().Identifier ).TagID ), Notify("NFC Read Fail...

Re: Gallery not displaying when app is opened first time.

Hi @WarrenBelz , With( { wBlank: IsBlank(TextInput3.Text) && IsBlank(DMSearchText_2.Text) && IsBlank(ProjectSearchText_2.Text) && IsEmpty(ddcol) && IsEm...

Navigator window not displaying function input parameters. Custom Connector for Power BI

Hi,   I am trying to create a custom connector for Power BI. I have followed the documentation on how to set up a Navigation Table. The table will navigate to three different functions. I ...

Re: Excel Power Query - Removing Keywords from Text

  No, I'm not saying you need a word per column. Text.Split will just split your text blocks into lists, the lists don't actually have to be physically materialised at all. Try adding a cust...

Re: Filter words from two columns and display the result in one table

Thanks , I will try it now and will let you know.

Re: Filter words from two columns and display the result in one table

Yes, To View as from Course to Course slicer . Thanks. 

Re: Request POST with Json Body

Hi @aliahasshim , Please refer to the document: API Call and Request Body Syntax (informatica.com)   Best Regards, Community Support Team _ kalyj If this post  helps,&n...

Re: Make a label's visible property ignore blanks

Hi, I've thought about a different way of doing the same. Firstly I created an array (Items) with all the selected Names and then count how many times it appears in the array, but if it is empty it...