Recherche Power Apps
Rechercher
Double validation on Submit
Greetings and Happy New Year-ish! I have what I think should be a simple request, but I can't seem to figure it out. Ha. I have a request form and I would like to have 2 things validated be...
Re: Picture to and from Sharepoint
Hi @KamilHCP You can add the power automate to App via button and then update the expression as below: Patch(ListaZgloszen,Defaults(ListaZgloszen),{ Title:CreateTicket...
Re: DateDiff & some maths
Hi @LiamR89 To exclude weekends from the count, you can update the configuration to: Set(_inclusiveTotalDaysRequested, DateDiff( ThisItem.Created,ThisItem.CheckedTime...
Re: How to put a "disabled" button if two fields have the same user selected and an option button is selected an exact option and one field is blank or with the value "0"
@Gorilla_8 Let's try another expression: If(Lower(radioFilho_1.Selected.Value) = Lower("há previsão orçamentária na área solcitante"), If(IsBlank(DataCardValue163_6.Text) ...
Re: How to put a "disabled" button if two fields have the same user selected and an option button is selected an exact option and one field is blank or with the value "0"
@Gorilla_8 If this needs to be added with an OR condition, then you can update the expression as: If( IsBlank(DataCardValue163_6.Text) && radioFilho_1...
Sum/subtract Sharepoint
Hello, On SharePoint I have two columns "Spent" and "Amount" and I would like to be able to do subtractions on a "Total" column but I can't get subtractions to work on the "Default" Powe...
Re: How to put a "disabled" button if two fields have the same user selected and an option button is selected an exact option and one field is blank or with the value "0"
@Gorilla_8 Can you please share more details about the case two? Hope this Helps! If this reply has answered your question or solved your issue, please...
Re: This formula uses scope which is not presently supported for evaluation data type....Default Value
Hi @Ianhall1892 ThisItem only works inside the gallery control. Do you have this dropdown placed inside the gallery control. If not, can you please share more details about the ...
Re: Portal Email Configuration
@davidyc if you create a shared mailbox and set up with Queue, this will not require a licence. You can use any email id to send the password reset/confirmation emails. For that need to update t...
Re: how to do Updateif else patch
Thanks @mim , The code I supplied was using your values - assuming ID is numeric (which it generally is) then ID = Value(TextBox3.Text) && DATE = DatePicker1.SelectedDate is s...
Image slideshow in Power Apps
In this video, I explained how to implement an auto Scrolling gallery with a document library from SharePoint. I have explained the important properties of image control and timer controls. By end ...
Re: Outlook is not working for my tenant
@yougan , This is definitely a licensing issue - I assume you are not the site Admin? You need them to lodge the Support Ticket.
Re: Check for duplicate powerapps records
@RandyHayes Hello, I realized that every time I make a change I need to keep updating the data source or have to disconnect and reconnect the data source for PowerApps to recognize the change....
Date and time Column and Refresh Function
Hi Team, 1) I am using Date and time in Powerapps as powerapps is not able to store the correct value what users are entering in the form we have store the data and time column into a single...
Re: Converting image to word using power apps and power automate
how are you sending the image from powerapps to flow? Can you please show the parameter value in powerapps that you are passing? Please click Accept as Solution if it resolved your p...
Update Connections!
Hi There, I have a power apps application connected to the SP list. I want to refresh the connection when a new item has created by flow to update the data in the app. How can I do th...
Re: How to only allow user add attachment but can't remove the attachment
Hi @Ed_C , The attachment control is either Edit or View mode (or New), so if a user has permission to add an attachment, they can also delete another one. You could consider making it Vi...
Re: Defaut Selectred items - Combo box- In EditForm (Embedded)
Thanks @WarrenBelz for your reply. As required: for city combobox:- The Items of this Combo Box Filter('SPList',StartsWith('Name',DataCardValue2.SearchText)) // DataCardValue2 is...
Portal Email Configuration
I am looking to set up a mailbox which can act as a 'system' email for a Power Apps Portal. For example, I would like to use this email with the reset password process and new portal account registra...
Re: Change Fill color when different Screen is Selected
Hi @thQS To configure this, you can set the Fill property as: If navigation menu is gallery: If(ThisItem.ColumnName = App.ActiveScreen.Name, RGBA(CurrentScree...
Re: Outlook is not working for my tenant
Hi @yougan You are getting this error because the license assigned to this user is either revoked or the subscription is expired. You can contact the System Administrator of you...
change the "New Item" title within the custom SP form
Currently, there is no way to change the 'New Item' item title within the custom SP Form (Opened through the 'Copy Link' of PowerApps Form).
Re: Disable Button when counter hits a certain number
My only reason for that question is to ensure that you are getting the number of check-ins with Label_Counter.Text. What count is this field showing? You are either not updating the Checkin ...
Re: Onboarding Tasks PowerApp Sample Template - Demo and Setup Instructions
Hi Todd, Amazing video! Helped me out greatly. However, every time I send this to my test user, the task list would get filled with the deleted task list and the new task lists ...
Re: Disable Button when counter hits a certain number
Couple of questions: 1) Are there two buttons to record the check-in/out process? 2) Does the user stay in the app during the check-in/out process? 3) If yes to the second question, are yo...