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/sharepoint/sharepoint-scenarios-choice-to-lookup.md
+9-7Lines changed: 9 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
---
2
2
title: How to use drop down list with choices from lookup column in a SharePoint list | Microsoft Docs
3
-
description: This article explains how to use the dropdown list in your app to show choices from a lookup column in a SharePoint list.
3
+
description: This article explains how to use the drop-down list in your app to show choices from a lookup column in a SharePoint list.
4
4
author: emcoope-msft
5
5
ms.service: powerapps
6
6
ms.topic: conceptual
@@ -15,7 +15,7 @@ search.app:
15
15
---
16
16
# How to use drop down list with choices from lookup column in a SharePoint list?
17
17
18
-
In this scenario article, you'll learn how to use a dropdown list with choices from a lookup column in a SharePoint list.
18
+
In this scenario article, you'll learn how to use a drop-down list with choices from a lookup column in a SharePoint list.
19
19
20
20
## Prerequisites
21
21
@@ -24,15 +24,17 @@ In this scenario article, you'll learn how to use a drop down list with choices
24
24
25
25
## Scenario details
26
26
27
-
You can use lookup columns in SharePoint that consume values from other lists or libraries. When using such column as a field in a canvas app, you can use drop down list with choices.
27
+
You can use lookup columns in SharePoint that consume values from other lists or libraries.
28
28
29
-
To use the choices in a drop down list, you have to use the function [choices](../functions/function-choices.md). For example, `Choices([@'Vehicle registration'].Vehicle_x0020_type)` uses the SharePoint list **Vehicle Registration** and the column **Vehicle type** for the lookup of the type of the vehicle.
29
+
When using such column as a field in a canvas app, you can use drop down list with choices.
30
+
31
+
To use the choices in a drop-down list, you have to use the function [choices](../functions/function-choices.md). For example, `Choices([@'Vehicle registration'].Vehicle_x0020_type)` uses the SharePoint list **Vehicle Registration** and the column **Vehicle type** for the lookup of the type of the vehicle.
30
32
31
33
## Example
32
34
33
35
1. Sign in to [Power Apps](https://make.powerapps.com).
34
36
35
-
1.[Create](app-from-sharepoint.md) a new app, or [edit](edit-app.md) an existing app.
37
+
1.[Create](../app-from-sharepoint.md) a new app, or [edit](../edit-app.md) an existing app.
36
38
37
39
> [!NOTE]
38
40
> Ensure the app uses SharePoint connection and connects to a SharePoint list as described in the prerequisites.
@@ -41,7 +43,7 @@ To use the choices in a drop down list, you have to use the function [choices](.
41
43
42
44
1. Select **Drop down**.
43
45
44
-

46
+

45
47
46
48
1. Update the **Items** property with the following formula:
47
49
@@ -51,7 +53,7 @@ To use the choices in a drop down list, you have to use the function [choices](.
Copy file name to clipboardExpand all lines: powerapps-docs/maker/canvas-apps/sharepoint/sharepoint-scenarios-customize-view-based-on-column-status.md
+12-6Lines changed: 12 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
---
2
2
title: How to customize an app screen baed on column status inside SharePoint list. | Microsoft Docs
3
-
description: This article explains how to how to customize an app screen baed on column status inside SharePoint list.
3
+
description: This article explains how to customize an app screen based on column status inside SharePoint list.
4
4
author: emcoope-msft
5
5
ms.service: powerapps
6
6
ms.topic: conceptual
@@ -13,9 +13,15 @@ search.audienceType:
13
13
search.app:
14
14
- PowerApps
15
15
---
16
-
# How to customize an app screen baed on column status inside SharePoint list?
16
+
# How to customize an app screen based on column status inside SharePoint list?
17
17
18
-
In this scenario article, you'll learn how to how to customize an app screen baed on column status inside SharePoint list. You can customize forms for supported lists or libraries; and you can also create app for lists or libraries. Limiting access to SharePoint objects can be achieved using fine-grained permissions inside SharePoint. However, it becomes difficult to scan through all items in your app screen especially when using different devices. One of the most common problem is how to limit the items in a canvas app screen based on status of columns, instead of controlling access using the permissions. This method allows you to create multiple screens to show different SharePoint objects based on column status, while at the same time without customizing permissions or overwhelming the app user with the entire list.
18
+
In this scenario article, you'll learn how to customize an app screen based on column status inside SharePoint list. You can customize forms for supported lists or libraries; and you can also create app for lists or libraries.
19
+
20
+
Limiting access to SharePoint objects can be achieved using fine-grained permissions inside SharePoint. However, it becomes difficult to scan through all items in your app screen especially when using different devices.
21
+
22
+
One of the most common problems is how to limit the items in a canvas app screen based on status of columns, instead of controlling access using the permissions.
23
+
24
+
This method allows you to create multiple screens to show different SharePoint objects based on column status, while at the same time without customizing permissions or overwhelming the app user with the entire list.
19
25
20
26
## Prerequisites
21
27
@@ -49,7 +55,7 @@ For example, you created a list named Issue Tracking, based on the out-of-the-bo
49
55
50
56

51
57
52
-
The sample list only has two items. However, when the number of issues increase, it becomes overwhelming to scan through issues or search them. Especially when the objective is to only show active issues that need help.
58
+
The sample list only has two items. However, when the number of issues increase, it becomes overwhelming to scan through issues or search them. Especially when the objective is to only show active issues.
53
59
54
60
1. Select the items gallery, by default named BrowseGallery1.
55
61
@@ -76,9 +82,9 @@ For example, you created a list named Issue Tracking, based on the out-of-the-bo
76
82
- [StartsWith](../functions/function-startswith.md) to allow search based on entered text in search box on the top.
77
83
- [If](../functions/function-if.md) for sorting items based on sort icon selection.
78
84
79
-
1. [Save and publish](save-publish-app.md) the app.
85
+
1. [Save and publish](../save-publish-app.md) the app.
80
86
81
-
1. [Share the app](share-app.md) with another user. For example, Kenny Smith.
87
+
1. [Share the app](../share-app.md) with another user. For example, Kenny Smith.
82
88
83
89
1. Run the app as the user that you shared the app with (Kenny Smith in this example).
Copy file name to clipboardExpand all lines: powerapps-docs/maker/canvas-apps/sharepoint/sharepoint-scenarios-intro.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -22,7 +22,7 @@ In this article, you'll learn about common scenarios when working with an app th
22
22
23
23
## Getting started with scenarios
24
24
25
-
Articles in this SharePoint scenarios integration section explain individual and short scenarios when working with SharePoint integration with canvas app. For a more detailed information about different SharePoint integration topics with canvas apps, refer to the links in the following table.
25
+
Articles in this SharePoint scenarios integration section explain individual and short scenarios when working with SharePoint integration with canvas app. For a more detailed information about different SharePoint integration articles with canvas apps, refer to the links in the following table.
Copy file name to clipboardExpand all lines: powerapps-docs/maker/canvas-apps/sharepoint/sharepoint-scenarios-lookup-list-permissions.md
+6-6Lines changed: 6 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -15,7 +15,7 @@ search.app:
15
15
---
16
16
# How to work with permissions in a lookup list from SharePoint site?
17
17
18
-
In this scenario article, you'll learn how to configure permissions for fields that use lookup columns from SharePoint lists. When you create a canvas app that connects to SharePoint, the app follows permissions configured inside SharePoint. Unique permissions at different levels inside SharePoint can become confusing when surfacing lists, libraries or items on a canvas app screen.
18
+
In this scenario article, you'll learn how to configure permissions for fields that use lookup columns from SharePoint lists. When you create a canvas app that connects to SharePoint, the app follows permissions configured inside SharePoint. Unique permissions at different levels inside SharePoint can become confusing when surfacing lists, libraries, or items on a canvas app screen.
19
19
20
20
The example in this tutorial explains how you can work with a canvas app that connects to SharePoint with such broken inheritance.
21
21
@@ -32,7 +32,7 @@ You can customize permissions for a SharePoint list or list item when you [stop
32
32
33
33
## Example
34
34
35
-
1. Create two SharePoint lists with one list consuming columns as lookups from the other list. For the purpose of this tutorial, we'd use two lists:
35
+
1. Create two SharePoint lists with one list consuming columns as lookups from the other list. In this tutorial, we'd use two lists:
36
36
37
37
| List | Columns
38
38
| - | - |
@@ -41,7 +41,7 @@ You can customize permissions for a SharePoint list or list item when you [stop
41
41
42
42
Shapes list has a Color lookup column. This lookup column is connected to the Color column from the Colors list for values. You can also use your own lists instead.
43
43
44
-
1. If required, create sample items:
44
+
1. If necessary, create sample items:
45
45
46
46
| Shapes | Color |
47
47
| - | - |
@@ -53,13 +53,13 @@ You can customize permissions for a SharePoint list or list item when you [stop
53
53
54
54
1. Sign in to [Power Apps](https://make.powerapps.com).
0 commit comments