Skip to main content

Vyhledání Power Apps

Vyhledat

326 – 350 z 199 056

Set color based on item value

I have two fields in powerapps as shown in screenshot. Those two values are hours value.    If I enter a value in 2nd field less than 20 as compared to the first column then the color of ...

Can we create SQL cascading dropdown with multiple table in power apps

I have 5 table in sql database.  each table connected with each other through a primary and foreign. Like 1st table is connected with 2nd  2nd  table is connected with 3rd likewise. ...

Re: Generate unique ID number when saving form (increment +1)

@DirkKoch  Add a dummy record to your sharepoint list with MyID = 1000

Re: Generate unique ID number when saving form (increment +1)

Hi @WarrenBelz,  the syntax is now correct by changing the bracket form accordingly. Nonetheless my issue is still not solved.  If I use the following formulas, the start number ...

Change combobox value based on checkboxes

Hi Everyone, Does anyone know if it is possible to change the value of a combobox based on the checkbox selection?   I used this formula   to change ComboBox value based on ano...

Re: Retrieve staff members from an Excel Online database

Hey @WarrenBelz, I appreciate your help so much. Thank you again. One last thing before I accept the solution, regarding the code above, how do I exclude myself(the user logged in) from appe...

Re: Combox inside a gallery reset after selection

Hi @WarrenBelz  Thanks for the reply, if i understand correctly, the code which I am using in the "on select" event of Gallery, I should use in every control separately and not in the same ...

Re: How to add an AAD group to basic user security role?

Did you add that group as a team in dataverse?

Re: Get the number of Yes and no in row

@DigitalHour , That does not really answer the question - are you totalling the number of yes answers per record (from all the 20 fields) or a total of all the gallery yes answers per field ? ...

Re: Populate Choice field with a text value from a Sharepoint List collected from a MS Form

Hi @gazzo1967 , Firstly you do not need the odata reference any more - I also have also assumed the output of your drop-down - change if not .Value { Value: Coalesce( DataCa...

Re: Delegation Warning - Excel Sharepoint

@jayceeb , I need the actual Items property of the Combo box  

how to logout github from powerapps

how to logout github from powerapps its not taking any key and password on login in powerapps solutions project

Re: New page not refreshing data

thank you Stalin, that worked like a charm 

Re: SharePoint Lookup list reaction

Anyone with an answer on this one?

Re: A problem with patch and update if

Hi @JosePadilla , You might want to elaborate more on the issues you were having, Perhaps paste the error you get, so that we can understand you better.   The video you refer to from...

Re: Using a listbox and count number of selected rows and attribute to a value

Hey @Gana_Dube    Have you tried the condition in this order: If( And( CountRows(listbox1.SelectedItems) > 0, CountRows(listbox2.SelectedItems) > 0) ,2, CountRows(listb...

Re: Fill in datacard using button starting a Power automate flow

Can you show me the default property for the field with a screenshot? I can also jump on a call with you if you would like so you can screenshare.

Re: Freezer Log - Passing Along Arguments to Filter Down to Rack

Hi @goldentrophy25 ,   You don't need to pass anything down since you can reference back. In the code for a possible filter you can see I referenced back to the three galleries fro...

Re: Using a listbox and count number of selected rows and attribute to a value

@Gana_Dube  If(CountRows(listbox1.SelectedItems)>0,3,0) or If(CountRows(listbox1.SelectedItems)>0,3,Blank())

Re: SharePoint Document Library File URL

Hi ! Thanks for the response !   I was able to get this working actually using the "linkingurl" field that I extracted from the metadata in Power Query, but it only seems to work for Microsoft...

Re: Freezer Log - Passing Along Arguments to Filter Down to Rack

Thanks I will make sure to use galleries.  My bigger question is how am I passing along the filter using the gallery as I do this?  I assume it's an OnSelect formula that saves the choice a...

Re: AAD User Table Empty

The next thing to check is if the users have access to Graph (this is needed for AAD User data). Here is a document detailing this: Authorization and the Microsoft Graph Security API - Microsoft...

Re: Gallery dropdown sortby issue

Hi, thanks for the reply. I tried that and i got a load of errors (Pic 1) basically i'm using a text box to enter a postcode which will change depending on what site the person is using it for. My da...

Re: React controls and platform libraries GA date

You mean Virtual Components? Well, they got released in Preview in Wave 1 this year and unless I missed something they didn't hit GA in Wave 2, so you're probably looking at Wave 1 next year. The wav...

Re: FORM - COMBOBOX WITH DIFFERENT DATASOURCE DOESN T WRITE IN SHAREPOINT COLUMN

Hi @FedeRichi88 , As you have noted, a Drop-down does not allow multiple selections, so you need a Combo Box. If you want a multiple selection Combo Box, you also need an appropriate fiel...