Your PHP is too old for Drupal 9- Liquid Web VPS Apache Server

Took me a few minutes to figure this out on my VPS so I thought I would share it.

One my liquid web server in the WHM, type in "PHP" in the search. Then Click on MultiPHP Manager.

Remove the comma from SharePoint Item List Integer Number column

On you "Number" column select the drop down option "Column settings"

Power Automate Power Apps - include an Email link in PowerAutomate email body to an item in a power apps.

****Update- Due to changes in Power Apps, you must make sure that you have the "Enable Navigation function in App.OnStart" ticked in your App's Settings. Located in Settiings> Upcoming features> Retired

 

Sort then search items Power Apps Gallery

Sort (Search(
    If (Dropdown4.Selected.Result = "All",'DATASOURCE', Filter('DATASOURCE','ColumnName' = Dropdown4.Selected.Result)),
    SearchBox.Text, "ColumnName") ,Created,Descending)

****Created is the column that stores the created date in my Sharepoint list

 

Create Item in Child SharePoint list if does not exist or Update an existing item in a child sharepoint list from a master sharepoint list - Power Automate

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.

PowerApps- Field Validation in the submit form function. phone and Email

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.)

PowerApps- Phone number validation - in Label

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)

 

PowerApps- Email validation formula checking for valid email format

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.

 

Multi-Screen Form in PowerApps- Display column/ field value in a custom label

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

PowerApps, SharePoint List, PowerAutomate- Public submission. Move item where user cannot edit any further.

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.

Pages

Subscribe to Melinda Cozza - Power Platform and CMS Developer RSS