Questions tagged [powerapps-canvas]

PowerApps Canvas allows creating Microsoft PowerApps visually on a canvas via drag & drop. Also add the general [powerapps] tag to your question.

PowerApps Canvas allows creating Microsoft PowerApps visually on a canvas via drag & drop.

525 questions
0
votes
1 answer

Using the Patch function to transfer information to archive table-- what am I doing wrong?

I am making a Power App where a user inserts machine information into a form, and then click a button to save it. It is also supposed to log this query alongside the date. I wanted the patch function to look at the data card values and patch those…
heiavieh
  • 27
  • 4
0
votes
1 answer

PowerApps BingMaps.GetMapV2 image trying to add multiple pushpins

I have added the below code to an image on my PowerApps canvas, if I add one pin it displays on the image/map but if i add 2 pins they don't display. im sure I've written it wrong or missed something...hopefully its not a limitation? any help would…
0
votes
0 answers

Conditional formatting/alert flag/icons in power apps tables

I am working on a Power Apps solution that should have a functionality to first check the content of an Excel file and first to check is that all necessary header columns are in the dataset. I open an excel file and send it to Power Automate to…
user5767413
  • 175
  • 3
  • 13
0
votes
1 answer

How to manage data table using global variable in Power Apps

I have created a Data table using global variable in my app. Now, I want to display the perticular records (Office Chair Details) in other blank screen: And, before my code is: OnStart = Set( gvProducts, Table( { …
0
votes
0 answers

Create ID and Display when saved in Power Apps

I am looking to save entries in OneDrive excel from Power Apps once entered, For saving I used the following code: Patch( Records, Defaults(Records), { Unit:'User Input - Unit'.Selected.Value, Application:'User Input -…
0
votes
1 answer

Allow access to my microsoft list or excel in onedrive only via powerapps

I have an application with powerapps It uses connections to onedrive and sharepoint lists as databases. Now, when I publish the application to other users in my organization, I have to share my list and excel data with them. The problem is that I…
Ridjy
  • 38
  • 4
0
votes
0 answers

PowerApps - canvas How to scroll two forms without splitting the screen space

I have 'general_form' that is always on a page and 'secondary_form' that is dependent on a checkbox in 'general_form'. To make 'secondary_form' visible based on the check isn't a problem, what I can't figure out is how to make them scrollable…
Matt Guga
  • 33
  • 4
0
votes
2 answers

Looking to color code with two if condition in powerapps

I am looking to color code field with two if condition, Have tried the below code, If( ('User Input - Unit'.Selected.Value = "Imperial") Or ('User Input - Unit'.Selected.Value = "Metric") && Value('Output'.Text) > 80,360, RGBA(…
Gandalf
  • 17
  • 3
0
votes
0 answers

Doing a text conversion using Power App and a sharepoint list for the changes

I have made an app with 2 pannels one on the left is a text input box and the one on the right is a text output. what i would like to do is enter words on a sharepoint list under OLDTXT and NEWTXT and it replaces those words in the text and…
Ian
  • 31
  • 6
0
votes
1 answer

Power Apps more than two levels filtering

I am building canvas Power App with Sharepoint as a data base. It is employee data with hierarchical structure based on manager personal ID. Hierarchy can be up to 6 levels. List has column "Approved". Data in the Power App is personalised and…
JoJu
  • 1
  • 1
0
votes
0 answers

EaseOutBack animation in Powerapps

I'm struggling a little here with trying to simulate an EaseOutBack animation in PowerApps. The code is supposed to simulate an EaseOutBack motion in moving the box onto the screen when flyOut equates to false. So it comes out, overshoots it's final…
0
votes
0 answers

How to get outlook email conversation using messageId in canvas app?

I am creating a canvas app that runs in ms teams, in that app I need to show emails both sent items and received emails of a specific conversation, currently I'm using Office365Outlook.GetEmail() function by passing messageId but this returns me a…
Roshan
  • 3,236
  • 10
  • 41
  • 63
0
votes
1 answer

Trying to display data on gallery using dropdown and button it is showing only one id data

Here what I am trying: I try to Display data of particular date and breakfast to show and if it change to lunch from dropdown second then it should show lunch data, but it showing only one last match id data, i want to show all related data,…
0
votes
0 answers

Embed non-related task list into Powerapps as a sub form

I am trying to set up a Power app for my company to help keep track of the trip planning process. The tasks are the same for every trip being planned. Lists: TaskList - (Name, Category, Attachments) TripList- (Trip Name, cost, location, dates,…
0
votes
0 answers

Improve performance of UpdateIf in PowerApps

Hoping someone can help me improve the performance of an UpdateIf statement I am using in PowerApps. Here is the code: UpdateIf( Nominations,true, { Status: {Value: "Not Approved"}, 'Approved By': varUser } ); This works, but takes about 5 minutes…
Chris2015
  • 1,030
  • 7
  • 28
  • 42