Blogs

Power Apps Dropdown with Sharepoint List Choice Column as Dropdown's options

Choices([@'Your list name'].SharePoint_column)

 

 

Example:

Choices([@'StateTestingProctor-Teachers'].TestSeason)

Count items filtered in a Power Apps Gallery

In a text label
Concatenate("Total: " & CountRows( YourGallery.AllItems ))

Count items in a Power Apps from a Sharepoint List- Cheater Code

Concatenate("Your Label Text " & CountRows(Filter('SharepointList', YourColumnName = "Your text condition" )))

 

For example: 
The below script looks at a couple conditions and counts the items that fit the criteria. This script is placed in a Text Label.

Concatenate("Diplomas that will need to be mailed" & " Total: " & CountRows(Filter('2025SummerGradCeremony', StatusColor.Value = "Yellow" And DiplomaEarned.Value = "Yes" )))

What it looks like on the Power App

MS Graph - Invoke HHTP Request- Active Directory- Power Automate - onPremisesExtensionAttributes

I needed to get the values of a custom "Attribute" field we had in Active Directory in Power Automate.

https://graph.microsoft.com/beta/users/USERS_EMAIL_ADDRESS?$select=onPremisesExtensionAttributes

In my PA, I used a compose action to dynamically change the user email address.

Oracle- Data Gateway-Power Automate Connector- Error

Here is the error in Power Automate:
Test connection failed. Details: Oracle: ORA-12504: TNS:listener was not given the SERVICE_NAME in CONNECT_DATA inner exception: Oracle: ORA-12504: TNS:listener was not given the SERVICE_NAME in CONNECT_DATA clientRequestId: 5d4ab5a5-d136-81dd-e0ab-ab62dd76e609

 

Here is what it should look like:

Power App- If Text Input box is blank how to save to Sharepoint list on a Patch function

Patch(

SharepointList, ThisItem,

{

Reserved: true, ReservedBy:User().FullName,

ReserverEmail: User().Email,

LearnerFullName: If(IsBlank(tiLearnerName_3.Text), Blank(), tiLearnerName_3.Text),

WhoFilledOutFormText: ddWhoFilling_3.Selected.Value

}

);

Power Apps Galleries- Show all events/Time slots for the person (Person Column Sharepoint) then filter by combobox date

So if the user doesn't select a date I have in the combobox, the gallery will display all the time slots Melinda has available.

 

Filter(TimeSlots,CounselorName.DisplayName = "Melinda", IsBlank(ComboBox2_1.Selected.DateDisplay) ||EventDate = ComboBox2_1.Selected.DateDisplay)

 

Power Apps- Patch Sharepoint List with Time Range, create time slots, and save to person column

I put this is my button's "OnSelect" property.

 

ForAll(

    Sequence(

        DateDiff(
/*This is my start and end times and it breaks it down into 1 hour or 30 minute or 15 minute time slots This still needs work*/

            ddStart.Selected.myDate,

            ddEnd.Selected.myDate,

            TimeUnit.Hours

        ) * If(

            ddLength.Selected.Length = 30,

            2,

             If(

            ddLength.Selected.Length = 15,

Pages

Subscribe to RSS - blogs