Submitted by melinda on Tue, 11/23/2021 - 23:39
I have two lists-
Master and the Child list
I am using the Master List's ID column and I created an integer column in the Child List called "CaseID". CaseID is my Key Column.
Here is the Flow.
Submitted by melinda on Mon, 11/15/2021 - 12:27
For the Icon or button you use for a form submit. Place formula in the "OnSelect" property.
(Tests for "true", a true result: submit the form, false result: it displays an error message on top of the page.)
Submitted by melinda on Mon, 11/15/2021 - 11:10
Shows error in label
!IsBlank(DataCardValue7_1.Text) And !IsMatch(DataCardValue7_1.Text,Digit & Digit & Digit & Hyphen & Digit & Digit& Digit& Hyphen & Digit & Digit & Digit &Digit)
Submitted by melinda on Mon, 11/15/2021 - 10:12
This Formula can go into the "OnSelect" property of the save or submit button.
If(IsMatch(DATACARDNUMBER.Text,
"^([a-zA-Z0-9_.-])+@(([a-zA-Z0-9-])+.)+([a-zA-Z0-9]{2,4})+$"
),
SubmitForm(FORMNAME),
Notify("Email not valid", NotificationType.Error)
)
This formula can go into a label to use on your screen.
Submitted by melinda on Mon, 11/08/2021 - 08:34
This is a very easy solution but finding in on the internet was not. So I am adding it here.
In your powerApp insert label then add the below to it's "Text" Value
Submitted by melinda on Tue, 10/26/2021 - 23:30
The Scenario:
We are using PowerApps as a UI for organization wide users to submit Grant applications. Forms is not an option because users need to come back in and be able to edit. So I created a multi-screen form app that saves the users progress section by section.
Submitted by melinda on Wed, 10/06/2021 - 08:08
So it is way too early in the AM for issues to be coming up. My brain couldn't comprehend this issue when it came up.
My date format was displaying " lulv" on my app. A google search brought up some naughty sites and I was like "Whaaaaat?" LOL
Submitted by melinda on Wed, 09/15/2021 - 12:47
The issue. Using a DISTINCT function in my dropdown brought in the blank value some records had in that column(Field). I didn't need the filter to have the blank value for filtering.
Submitted by melinda on Mon, 09/13/2021 - 11:08
Here's the css code from an unordered list
I believe it is the "SVG" selector that takes away the blinky thing.
Submitted by melinda on Mon, 08/23/2021 - 08:32
Pages