Power Apps – Keresés
Keresés
Re: Gallery with date columns
Hi @RandyHayes You know that I had written my answer but it did not come out, it gave an error and just today I realized it, excuse me. Here I send you my answer. Excuse ...
Pass data to lookup column datacard in powerapp form
Hi all, i am trying to modify a sharepoint list (Employees) edit form with powerapp. The list has a lookup field to another list called Departments. On the new powerapp form i added a second s...
Re: Potential bug - Filter SQL 'bit' returns invalid operation
Hi @vladimir84 This is very interesting and I've been able to recreate this issue. What I think is happening is that Power Apps isn't handling column names that don't adhere...
Re: combobox force a selection
Try this. In the OnChange property of your combobox, set a formula like this: If(IsBlank(ComboBoxX.SelectedItems), Set(varSelected, false), true) Then have a warning label ...
Re: Picture to and from Sharepoint
Hi, Should I use "Created desc" in order to get the last ID? When I do "Created asc" SharePoint list updates the first row, but with "Created desc" is trying to update the last one. &...
Re: Power Apps - We encountered an unexpected error. Session ID:
. Have you tried converting the XL file to CSV and then back to an XL file?
Re: How do i keep persistent gallery filters
Hi @ChrisBrazeau Without looking at the OnVisible property that creates the collections, I tried to simplify your code for the Items in your gallery, but made no attempt to evaluate whet...
create a gallery to search a specific document library with videos and pdf and .docs
I'm attempting to create a gallery which searches a specific document library. The library has videos, pdfs, and .docs. I would like to pull and view the content within powerapps. 1) I...
Re: Prevent users from editing other fields of a list except three.
@Yemata Yeah, you could try something like that although it might get a little crazy at times. I believe the concept you are considering is to have a separate list with the info you n...
Re: Renaming Photos in existing Sharepoint Document Library
Hi, Is this still an issue?
Re: Reg Exp to match characters ANYWHERE in string
@StevieC I believe you are saying you want to make sure the text entered is all UpperCase CAPS? Maybe I have it backward. If so, then set your formula to: Set(varError, !IsBlank...
Re: Dropdown in EMPTY ... again
@eka24 Yes, onvisible. Does it matter?
Re: Reg Exp to match characters ANYWHERE in string
Quick follow up - how would i get the following to work: Set(varError, !IsBlank( Match(DataCardValue2.Text, "([!$%])").FullMatch Or IsMatch(DataCardValue2.Text, "^[^a-z]+$"))) The l...
Re: Copying Inspection Points to Work Order on SQL database
Hi @mhulsegge , I am assuming that your are using NewForm(YourFormName) and you want to copy in additional information before saving the record? If so, you simply need to set the Default ...
Re: Flow is not displayed in my powerApp
Hi, ive had this issue at various times, but today was driving me mad so it got me looking for a solution. I can confirm clearing the browser cache does NOT solve the issue, like the answer said i...
Re: Which properties to change to update a different SPO column
@yashag2255 Perfect Thanks, bit of a pain but definitely better than re-doing all the design work multiple times!
Re: Allow or disallow status change from the app
@santpaiva You can set up the configuration as below: Instead of patching the updates to data source, you can trigger a Power Automate Flow. The flow will have a trigger o...
Re: Picture to and from Sharepoint
@KamilHCP Please take your time and reply on the same thread if you are stuck at any point, we are here to help 🙂 Take baby steps as per the video I shared, and you will be able t...
Clear/Reset or Set a single or multi line DataCardValue.
Hello All, I have created a SharePoint list with a few dropdown-boxes, single line and multi line input boxes. In PowerApps, on the form, I would like to have the possibility to clear ...
Re: If funktion and multi funktion
Hi @yashag2255 Can you use this? - Peter
Dataflow Date Only field error
Hi, I am facing an error while loading data into CDS/Dataverse entity/table. The issue is specific to Date datatype. Earlier, I had a column with DateOnly datatype with Behavior as "User loc...
Re: Update Gallery CheckBox
Hi @iwonder To configure this, can you update the configuration to: CheckBox -> Default -> If(ThisItem.Meditation in SelectedCheckboxes.Value,true,false) ...
Re: Update date picker values in an if statement
@gabibalaban Again sorry I am new to power apps, when you refer to schema, should that be like a Sharepoint list or a screen in the app with the schedule detail. Could you guide with th...
Re: Dates need to have zero for single digit dates
Hi @sarath_123 , Do you need this data as a Date type or String ? If you need a string, use: Text(answerFromFlow, "mm/dd/yyyy") If you need a Date type is better to leave as it is....
Re: OnStart Error
I meant I can't see the full formula for the first variable. ------------ If you like this post, give a Thumbs up. Where it solved your request, Mark it as a Solution to enable other users find ...