File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed
powerapps-docs/maker/canvas-apps/functions Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -30,6 +30,8 @@ The data for the entity that you specify in the first argument will be refreshed
30
30
31
31
These functions never create or delete a record. They only relate or unrelate two records that already exist.
32
32
33
+ You can use these functions only in [ behavior formulas] ( ../working-with-formulas-in-depth.md ) .
34
+
33
35
## Syntax
34
36
35
37
** Relate** ( * Entity1RelatedTable* , * Entity2Record* )
@@ -255,7 +257,7 @@ You'll create another app that resembles the one you created earlier in this top
255
257
1. Set the **Cancel** icon's **OnSelect** property to this formula:
256
258
257
259
```powerapps-dot
258
- ** Unrelate( Gallery1.Selected.Contacts, ThisItem )**
260
+ Unrelate( Gallery1.Selected.Contacts, ThisItem )
259
261
```
260
262
261
263

@@ -275,7 +277,7 @@ You'll create another app that resembles the one you created earlier in this top
275
277
1. Insert an **Add** icon, and set its **OnSelect** property to this formula:
276
278
277
279
```powerapps-dot
278
- ** Relate( Gallery1.Selected.Contacts, ComboBox1.Selected )**
280
+ Relate( Gallery1.Selected.Contacts, ComboBox1.Selected )
279
281
```
280
282
281
283

You can’t perform that action at this time.
0 commit comments