Hi All,
I have a tried two expressions to only display the edit action when a user’s email matches the email column for a detailed view. I don’t want the user to edit rows of data that related to them. Any idea why the action is persisting on any detail view?
Tried:
-
USEREMAIL() = Lower([primaryEmail])
-
AND(
CONTEXT(“ViewType”) = “Detail”,
USEREMAIL() = LOWER([primaryEmail])
)

