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

Enable button on drop-down & Text Input Validation

The [ ADD ] button enable when all 3 drop-down are selected. Trying to figure out how to now enable the [ ADD ] when the user enter a number amount on the Quantity TextInput DisplayMode: If(IsBlank(drpCategory.Selected.Result) ||…
user5148719
0
votes
1 answer

Default text into a text field in PowerApps

How can I default text into a text box on PowerApps? I've tried setting the default like this: However, the text box is returning "false". I need the text box to have something in it in order for my connected flow to work correctly, however, I…
0
votes
1 answer

No Value showing in Gallery Price Column

Trying to figure out what is missing? Every-time a user submit a new order the price should show up. But is showing the value has "0" Price Columns Type is Currency This is the code to create a new collection …
user5148719
0
votes
2 answers

Microsoft PowerApp - OR function

I am struggling to use the OR function in my Powerapp I have SortByColumns(Filter(Scopes, StartsWith(Title, TextSearchBox1.Text)), "Title", If(SortDescending1, Descending, Ascending)) and also SortByColumns(Filter(Scopes, StartsWith(Title,…
Henry Aspden
  • 1,863
  • 3
  • 23
  • 45
0
votes
1 answer

Combine Search() and Filter() to Gallery Items in PowerApps

I'm looking for a way to combine Search() and Filter() in my PowerApps gallery. There are a handful of columns that we would like to Search any text contained within, however, there are 2 columns that are lookup columns (one being a people field…
0
votes
1 answer

Power Apps Modify Dropdown Items Property to List Files From a Specific SP Doc Library Folder

I have a dropdown menu that is populated with files from a SP document library "Documents" and it excludes folder names using this code on the Items property: Filter(Documents, !IsFolder) This works great but now I need to designate a specific…
12AX7
  • 310
  • 4
  • 14
0
votes
1 answer

Create an App in Microsoft Power apps from the existing code

I would like to create an app in MS Poer apps. I already have a web application. I want that web application to be created in power apps. Do I have to create the same functionality from scratch or I can re-use the my already created web application…
Dalvir Singh
  • 423
  • 3
  • 11
  • 25
0
votes
1 answer

PowerApps Filter data

I have below case in my app, am filtering data based on the user logged in with many condition but its take long time to retrieve the data since i have "And / or " in my filter should i use lookup/search ? UpdateContext({LoadText:"Loading Data...…
osama
  • 5
  • 4
0
votes
1 answer

PowerApps - Creating a Date Range

I am learning to use PowerApps. While learning, I'm trying to create a form that includes two data cards: a start date and an end date. When a user chooses a start date, I want the end date to automatically be set to one week in the future. However,…
Learner
  • 43
  • 2
  • 6
0
votes
1 answer

Unexpected characters and Expected operators. Power Apps

I have been trying out Power Apps of late and I ran into this issue creating a form that links to a SQL database: Unexpected characters and Expected operators. And for the life of me I don't know what characters and operators they are complaining…
0
votes
1 answer

Any function to load the data of 2 share point lists to a single gallery in power apps?

I'm developing a new application which takes survey of the users. In my gallery i have 2 labels(it requires Question and Comments), 1 slider(Rating value). Now, to one label i need data from gallery's data source. To the other label and slider i…
anitha yadav
  • 1
  • 1
  • 2
0
votes
2 answers

Is there any way to open the applications in two systems at same time?

To develop an application in power apps there is a team of two members. The application is not accessible by two people at the same time in two systems. I wanted to know if there is any solution for this.
anitha yadav
  • 1
  • 1
  • 2
0
votes
2 answers

Redirect unauthorized users using Navigate on screen OnVisible

I have an issue with Screen On visible parameter condition if user unauthorized else navigate, in case user is not authorized to view a specific in screen, then the user will be redirect to another screen. if there is any another option please…
0
votes
1 answer

Date function not working on Label in PowerApps

I've a dropdown named "testDateField" and a label named "testLabel". In the dropdown, I've data as month/year. For example: 01/2019 02/2019 03/2019 04/2019 05/2019 06/2019 07/2019 08/2019 ... ... Now, in the testLabel; I want to use the below…
0
votes
2 answers

PowerApps global variable not updating when record changed

I have a Canvas app with three pages. Page 1 has a gallery listing records. When a user selects an item in the gallery the following is executed Set(SelectedRecord, ThisItem); Navigate('Page 2',ScreenTransition.Fade); Page 2 has a label with…
Stuart
  • 1,123
  • 8
  • 24