Skip to content

Commit f9a82d2

Browse files
Merge pull request SharePoint#6948 from ganesh-sanap/patch-4
Updated "Unsupported column types"
2 parents 2f780ed + fdc978f commit f9a82d2

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

docs/declarative-customization/list-form-conditional-show-hide.md

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: Show or hide columns in a list form
33
description: Customize which columns to show or hide using a conditional formula in the list form by constructing a simple formula that are equations performing conditional checks on values in a SharePoint list or library.
4-
ms.date: 04/20/2021
4+
ms.date: 04/23/2021
55
localization_priority: Priority
66
---
77

@@ -66,7 +66,6 @@ While the formula supports many of the available column types, we do not current
6666

6767
* Person or Group with multiple selections
6868
* Choice with multiple selections
69-
* Lookup columns
7069
* Time calculations in Date and Time column
7170
* Currency columns
7271
* Location columns
@@ -135,9 +134,9 @@ The following formula checks if the Yes/No column `[$Promoted]` is equal to a Ye
135134

136135
##### Lookup column
137136

138-
The following formula checks if the lookup column [$City] is equal to _Toronto_. To do so, it checks for the value _1;#Toronto_ where 1 is an item ID in the lookup list of cities.
137+
The following formula checks if the lookup column `[$City]` is equal to *Toronto*. To do so, it checks for the value `1;#Toronto` where 1 is an item ID in the lookup list of cities.
139138

140139
```
141-
=if([$City]=='1;#Toronto', 'true', 'false')
140+
=if([$City] == '1;#Toronto', 'true', 'false')
142141
```
143142

0 commit comments

Comments
 (0)