You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: powerapps-docs/maker/canvas-apps/common-issues-and-resolutions.md
+6-2Lines changed: 6 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -7,7 +7,7 @@ ms.service: powerapps
7
7
ms.topic: conceptual
8
8
ms.custom: canvas
9
9
ms.reviewer:
10
-
ms.date: 07/02/2020
10
+
ms.date: 09/22/2020
11
11
ms.author: kvivek
12
12
search.audienceType:
13
13
- maker
@@ -28,7 +28,7 @@ This article lists some common issues that you might encounter while using Power
28
28
When using embedded canvas apps such as SharePoint forms, SharePoint web parts, and model driven forms, users many see a black box when scrolling covering part of the app. This issue happens with chromium based browsers starting with version 83. There is not a workaround at this time. The team is actively investigating to find a fix and workaround. **A workaround in Power Apps was deployed in the week of 6/21/2020. In addition, the issue is fixed for Microsoft Edge based on Chromium with version 85.**
29
29
30
30
1.**Problems downloading attachments in SharePoint custom forms** (May 22, 2020)
31
-
When using the attachment control to download an attachment, the click won't have any response when using Google Chrome version 83 or the new Microsoft Edge version 83 browser. As a workaround, change to use the default SharePoint form or use another browser. The team is actively working to fix this issue. **Fix has been deployed in the weeek of 6/8/2020**
31
+
When using the attachment control to download an attachment, the click won't have any response when using Google Chrome version 83 or the new Microsoft Edge version 83 browser. As a workaround, change to use the default SharePoint form or use another browser. The team is actively working to fix this issue. **Fix has been deployed in the week of 6/8/2020**
32
32
33
33
1.**Problems downloading attachments in embedded Power Apps** (May 22, 2020)
34
34
When using the attachment control to download an attachment, the click won't have any response when using Google Chrome version 83 or the new Microsoft Edge version 83 browser. As a workaround, use another browser. The team is actively working to fix this issue.
@@ -207,3 +207,7 @@ This article lists some common issues that you might encounter while using Power
207
207
1.**Card gallery is deprecated**.
208
208
209
209
Existing apps that use this feature will continue to run for the time being, but you can't add a card gallery. Please replace card galleries with the new **[Edit form](controls/control-form-detail.md)** and **[Display form](controls/control-form-detail.md)** controls.
210
+
211
+
1.**Power Apps per app plans does not support Power Apps for Windows app**
212
+
213
+
Power Apps for Windows app is not supported if you're on the [Power Apps per app plans](https://docs.microsoft.com/power-platform/admin/about-powerapps-perapp).
Copy file name to clipboardExpand all lines: powerapps-docs/maker/canvas-apps/functions/function-patch.md
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -100,7 +100,7 @@ In these examples, you'll modify or create a record in a data source, named **Ic
100
100
101
101
| Formula | Description | Result |
102
102
| --- | --- | --- |
103
-
|**Patch( IceCream,<br>First( Filter( IceCream, Flavor = "Chocolate" ) ), { Quantity: 400 } )**|Modifies a record in the **IceCream** data source:<ul><li> The **ID** column of the record to modify contains the value of **1**. (The **Chocolate** record has that ID.)</li><li>The value in the **Quantity** column changes to **400**. |{ ID: 1, Flavor: "Chocolate", Quantity: 400 }<br><br>The **Chocolate** entry in the **IceCream** data source has been modified. |
103
+
|**Patch( IceCream,<br>Lookup( IceCream, Flavor = "Chocolate" ), { Quantity: 400 } )**|Modifies a record in the **IceCream** data source:<ul><li> The **ID** column of the record to modify contains the value of **1**. (The **Chocolate** record has that ID.)</li><li>The value in the **Quantity** column changes to **400**. |{ ID: 1, Flavor: "Chocolate", Quantity: 400 }<br><br>The **Chocolate** entry in the **IceCream** data source has been modified. |
104
104
|**Patch( IceCream, Defaults( IceCream ), { Flavor: "Strawberry" } )**|Creates a record in the **IceCream** data source:<ul><li>The **ID** column contains the value **3**, which the data source generates automatically.</li><li>The **Quantity** column contains **0**, which is the default value for that column in the **IceCream** data source, as the **[Defaults](function-defaults.md)** function specifies.<li>The **Flavor** column contains the value of **Strawberry**.</li> |{ ID: 3, Flavor: "Strawberry", Quantity: 0 }<br><br>The **Strawberry** entry in the **IceCream** data source has been created. |
105
105
106
106
After the previous formulas have been evaluated, the data source ends with these values:
Copy file name to clipboardExpand all lines: powerapps-docs/maker/canvas-apps/functions/function-update-updateif.md
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -43,7 +43,7 @@ Both **Update** and **UpdateIf** return the modified data source as a [table](..
43
43
**DataSource* – Required. The data source that contains the record that you want to replace.
44
44
**OldRecord* – Required. The record to replace.
45
45
**NewRecord* – Required. The replacement record. This isn't a change record. The entire record is replaced, and missing properties will contain *blank*.
46
-
***All** – Optional. In a collection, the same record may appear more than once. Specify the **All** argument to remove all copies of the record.
46
+
**All* – Optional. In a collection, the same record may appear more than once. Specify the **All** argument to update all copies of the record.
Copy file name to clipboardExpand all lines: powerapps-docs/maker/canvas-apps/functions/function-updatecontext.md
+7-1Lines changed: 7 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -72,7 +72,7 @@ Every context variable is scoped to a screen. If you want to define a context va
72
72
|**UpdateContext( { Person: { Name: "Milton", Address: "1 Main St" } } )**|Creates or modifies the context variable **Person**, setting its value to a record. The record contains two columns, named **Name** and **Address**. The value of the **Name** column is **Milton**, and the value of the **Address** column is **1 Main St**. |**Person** has the value of record **{ Name: "Milton", Address: "1 Main St" } }**.<br><br>Reference this record as a whole with the name **Person**, or reference an individual column of this record with **Person.Name** or **Person.Address**. |
73
73
|**UpdateContext( { Person: Patch( Person, {Address: "2 Main St" } ) } )**|Works with the **[Patch](function-patch.md)** function to update the **Person** context variable by setting the value of the **Address** column to **2 Main St**. |**Person** now has the value of record **{ Name: "Milton", Address: "2 Main St" } }**. |
74
74
75
-
### Step-by-step example
75
+
### Step-by-step example 1
76
76
1. Name the default screen **Source**, add another screen, and name it **Target**.
77
77
2. On the **Source** screen, add two buttons, and set their **[Text](../controls/properties-core.md)** properties so that one says **English** and the other says **Spanish**.
78
78
3. Set the **[OnSelect](../controls/properties-core.md)** property of the **English** button to this expression:<br>**Navigate(Target, ScreenTransition.Fade, {Language:"English"})**
@@ -88,5 +88,11 @@ Every context variable is scoped to a screen. If you want to define a context va
88
88
On the **Target** screen, the label appears in the language that corresponds to the button that you selected.
89
89
10. Press Esc to return to the default workspace.
90
90
91
+
### Step-by-step example 2
92
+
93
+
1. Open the canvas app where you want to use this formula.
94
+
1. Add a new blank screen by selecting **New screen** from the command bar.
95
+
1. Add a button, and set its **[OnSelect](../controls/properties-core.md)** property to this formula: <br> **UpdateContext( { Name: "Lily", Score: 10 } )**
title: Performance tracking in model-driven apps | Microsoft Docs
3
+
description: Learn how performance is tracked in model-driven apps
4
+
documentationcenter: ''
5
+
author: JesseParsons
6
+
ms.reviewer: matp
7
+
ms.service: powerapps
8
+
ms.topic: conceptual
9
+
ms.component: model
10
+
ms.date: 03/04/2020
11
+
ms.author: jeparson
12
+
search.audienceType:
13
+
- maker
14
+
search.app:
15
+
- PowerApps
16
+
- D365CE
17
+
---
18
+
19
+
# Tracking performance in model-driven apps
20
+
21
+
Model-driven apps use a custom performance tracking library to measure user actions. The measurements can be tracked by makers using the [Monitor tool](https://powerapps.microsoft.com/en-us/blog/monitor-now-supports-model-driven-apps/).
22
+
23
+
## Page KPI's
24
+
The performance tracking library creates key performance indicators (KPI's) for each user action. User actions include:
25
+
- Page navigations, such as edit forms, grids, and dashboards.
title: "View charts on a form page in model-driven apps| MicrosoftDocs"
3
-
description: View charts on from pages in Power Apps
2
+
title: "View charts on a form page or in a record in model-driven apps| MicrosoftDocs"
3
+
description: View charts on form page or in a record
4
4
author: mduelae
5
5
manager: kvivek
6
6
ms.service: powerapps
@@ -21,62 +21,60 @@ search.app:
21
21
22
22
You can view charts on a page that has a list of records. You can also open a record and view a chart in the record.
23
23
24
-
Only an administrator can add charts to a record, for information see,[Add a chart to a form](https://docs.microsoft.com/powerapps/maker/model-driven-apps/add-chart-to-form).
24
+
Only an administrator can add charts to a record. For information, go to[Add a chart to a form](https://docs.microsoft.com/powerapps/maker/model-driven-apps/add-chart-to-form).
25
25
26
26
## View charts on a page
27
27
28
-
1. On the left navigation, select a page.
29
-
2. On the commbar bar, select **Show Chart**.
28
+
1. On the left navigation pane, select a page.
29
+
2. On the command bar, select **Show Chart**.
30
30
31
31
> [!div class="mx-imgBorder"]
32
-
> 
32
+
> 
33
33
34
34
3. Select the drop-down menu to choose a view.
35
35
36
36
> [!div class="mx-imgBorder"]
37
-
> 
37
+
> 
38
38
39
39
4. Select the chart view drop-down menu to choose between a system or personal view.
40
40
41
-
-**My Charts**: My charts are personal charts that can only be seen by the user that created the chart. The user can also share their personal chart with other users if the user has sharing privileges for their security role.
42
-
-**System Charts**: System charts are create by your administrator. By default, these charts are visible to all users.
41
+
-**My Charts**: Personal charts that can only be seen by the user who created the chart. The user can also share their personal chart with other users if the user has sharing privileges for their security role.
42
+
-**System Charts**: Created by your administrator. By default, these charts are visible to all users.
43
43
44
44
> [!div class="mx-imgBorder"]
45
-
> 
45
+
> 
46
46
47
47
## Commands on a chart view
48
48
49
-
Use the **More Commands** button  to access commands such as, create a new chart, import, export, and more. The chart commands options are different for system charts and personal charts.
49
+
Use the **More Commands** button  to access commands such as create a new chart, import, export, and more. The chart commands options are different for system charts and personal charts.
50
50
51
51
52
-
| Commands on my (personal) charts |Command on system charts |
52
+
| Commands on my (personal) charts |Commands on system charts |
53
53
|---------|---------|
54
-
|||
54
+
|||
55
55
56
56
57
57
## Grid filter on charts
58
58
59
-
Grid home page provides multiple filter options for a user to filter the grid data such as, quick find, advanced find, grid column filter, and jump bar.
60
-
For more information, see [How to use grid filters](https://docs.microsoft.com/powerapps/user/grid-filters).
61
-
59
+
Grid home page provides multiple filter options for a user to filter the grid data such as quick find, advanced find, grid column filter, and jump bar. For more information, go to [How to use grid filters](https://docs.microsoft.com/powerapps/user/grid-filters).
62
60
63
61
When a chart is shown together with grid, the grid filter option that you select will filter both chart and grid.
64
62
65
-

63
+

66
64
67
65
Legend:
68
66
69
67
1.**Sort**: Sorts records. Use **Filter by** to filter both grid and chart data based on the filter criteria.
70
-
2.**Open advanced filtering panel**: See which filters were applied to the current view. For more information, see[See the current view definition](https://docs.microsoft.com/powerapps/user/grid-filters-advanced#see-the-current-view-definition).
68
+
2.**Open advanced filtering panel**: See which filters were applied to the current view. For more information, go to[See the current view definition](https://docs.microsoft.com/powerapps/user/grid-filters-advanced#see-the-current-view-definition).
71
69
3.**Search this view**: Search for data in the view you're in.
72
70
4.**Jump bar**: The page jump bar uses the first sorted field. If no change has been made to the sort order, the jump bar uses the primary field.
73
71
74
72
### Drill-down in the chart data
75
73
76
-
You can drill-down into a segment on a chart and filter the data for that segment. When a chart is shown together with grid, the drill-down option that you select will filter both chart and grid as show in this illustration.
74
+
You can drilldown into a segment on a chart and filter the data for that segment. When a chart is shown together with grid, the drill-down option that you select will filter both chart and grid as shown in this illustration.
77
75
78
-

76
+

79
77
80
-
For more information on how to use the drill-down feature, see[Drill-down in a chart](https://docs.microsoft.com/powerapps/user/track-your-progress-with-dashboard-and-charts#drill-down-in-a-chart).
78
+
For more information on how to use the drill-down feature, go to[Drill-down in a chart](https://docs.microsoft.com/powerapps/user/track-your-progress-with-dashboard-and-charts#drill-down-in-a-chart).
0 commit comments