Form View Option Row key - Only edit one specific row, identified by this key

Is there any documentation how to use the Row key in a Form?
Or does anyone have used this?
I want to use it for something like:
Show me only the row which contains the USEREMAIL().
But I donโ€™t get it working.

2X_4_45221721eacb10f787f3a7a3b2986a94143b2fb5.png

1 5 3,018
  • UX
5 REPLIES 5

Steve
Platinum 4
Platinum 4

The expression needs to result in a rowโ€™s key column value.

I was using the expression
FILTER("CCS_User",UserEmail=USEREMAIL())
And it didnโ€™t work, because FILTER() returns a LIST of keys.

Then I tried
ANY(FILTER("CCS_User",UserEmail=USEREMAIL()))
But this also didnโ€™t work.

Finally I had success with
ANY(SELECT(CCS_User[Key] , [UserEmail]=USEREMAIL()))

Am I missing something, or is this a bug?

This:

ANY(FILTER("CCS_User",UserEmail=USEREMAIL()))

should be this:

ANY(FILTER("CCS_User",[UserEmail]=USEREMAIL()))

Aaaaah. Thank you

lookup(useremail(), Table, Column_Containing_Email, Column_You_Want_Data_From)

In this case the column you want data from is whatever column youโ€™ve marked as the Key for the table youโ€™re opening.

Top Labels in this Space