NestedTables and how to apply logic based on a list in Power Apps
I have a Table in Dataverse called Drivers that has DriverName, Jsonvalues. In my Jsonvalues looks like the following
{
“Month”: “Jan”,
“Year”: 2024,
“Value”: 31
},
{
“Month”: “Feb”,
“Year”: 2024,
“Value”: 27
}.
The user profile value is shown Nill in power app,why?
If(IsBlank(Office365Users.UserProfile(Parent.Default).DisplayName),”Nil”,Office365Users.UserProfile(Parent.Default).DisplayName) This is the error in power app which shows the user profile value is nill why this error come and how to resolve it.
Unable to add user full name in Power APP Patch function. It is getting errro
I am currently using the following patch function, all is working fine. But when I required the user full name it started getting error. Below is the example: –
Two global variables showing the same information in PowerApps
I have two variables that are getting the last Id of the last row in an Oracle table, and then incrementing it by one to use for a form (new and edit) as such:
Two global variables showing the same information in PowerApps
I have two variables that are getting the last Id of the last row in an Oracle table, and then incrementing it by one to use for a form (new and edit) as such:
How do I get two different menus to show based on users role
I am creating a navigation menu, and what I am trying to do is if the user is not an admin, then show one menu, and if they are an admin, show a different menu. I have tried several different ways to do this but no success. Hopefully someone can help?
Patch variable insert or update Form (not gallery) single button
I have a SharePoint list called ‘CustomerList’ with a form.
The ‘Add/ Update Customer’ button should insert a record if the ID is blank (ex the user selected ‘+New’ in the CustomerList
If a user selected a record from the list, the form should update the record when the user clicks the button.
Power Apps: Patch variable insert or update Form (not gallery) single button
I have a SharePoint list called ‘CustomerList’ with a form.
The ‘Add/ Update Customer’ button should insert a record if the ID is blank (ex the user selected ‘+New’ in the CustomerList
If a user selected a record from the list, the form should update the record when the user clicks the button.
Filter PowerApps ComboBox options based on another column in a different SP List
I have two SharePoint lists, Maintenance Work Orders
and Machines
. In my Canvas App, I have a combobox that is used to fill in the machine number in the Machine_Number
column of the Maintenance Work Orders
list. However, I only want the options in this combobox to be machine numbers which have the Active
column of the Machines
list set to true
Time and date stamp form control datacard when toggle control is set to true in PowerApps
Need help please. I have a form in powerapps where i capture the information then save it to Sharepoint.
In my form control, i have a toggle control where i want to auto populate the current date and time in another data card (textinput control) when the toggle is set to true (onCheck). I was able to capture the date and time but the problem is, when i view the old record the time stamp is always updating to the current instead of initial captured date and time values. when viewing the form item records, it should show the time stamp that was initially captured and not update to the current date and time. How can i handle both scenario?