Edit Action Still Displaying with Expression to hide based on User

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:

  1. USEREMAIL() = Lower([primaryEmail])

  2. AND(
    CONTEXT(“ViewType”) = “Detail”,
    USEREMAIL() = LOWER([primaryEmail])
    )

Your words are saying that you DO NOT want to allow a user to edit a row where they are listed as the PrimaryEmail.

You expression is indicating that DO want to allow a user to edit a row where they are listed as the PrimaryEmail.

Assuming your words are more accurate :grin: , Try changing the expression to:

NOT(USEREMAIL() = [primaryEmail])