Skip to content

Commit fb0e60a

Browse files
committed
Done done
1 parent cb4ad51 commit fb0e60a

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

powerapps-docs/maker/canvas-apps/functions/function-relate-unrelate.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,8 @@ The data for the entity that you specify in the first argument will be refreshed
3030

3131
These functions never create or delete a record. They only relate or unrelate two records that already exist.
3232

33+
You can use these functions only in [behavior formulas](../working-with-formulas-in-depth.md).
34+
3335
## Syntax
3436

3537
**Relate**( *Entity1RelatedTable*, *Entity2Record* )
@@ -255,7 +257,7 @@ You'll create another app that resembles the one you created earlier in this top
255257
1. Set the **Cancel** icon's **OnSelect** property to this formula:
256258
257259
```powerapps-dot
258-
**Unrelate( Gallery1.Selected.Contacts, ThisItem )**
260+
Unrelate( Gallery1.Selected.Contacts, ThisItem )
259261
```
260262
261263
![Configure Cancel icon](media/function-relate-unrelate/contacts-unrelate.png)
@@ -275,7 +277,7 @@ You'll create another app that resembles the one you created earlier in this top
275277
1. Insert an **Add** icon, and set its **OnSelect** property to this formula:
276278
277279
```powerapps-dot
278-
**Relate( Gallery1.Selected.Contacts, ComboBox1.Selected )**
280+
Relate( Gallery1.Selected.Contacts, ComboBox1.Selected )
279281
```
280282
281283
![Configure Add icon](media/function-relate-unrelate/contacts-relate.png)

0 commit comments

Comments
 (0)