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])
)
Solved! Go to Solution.
@lochtefeldm wrote:
I don't want the user to edit rows of data that related to them.
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 😁, Try changing the expression to:
NOT(USEREMAIL() = [primaryEmail])
@lochtefeldm wrote:
I don't want the user to edit rows of data that related to them.
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 😁, Try changing the expression to:
NOT(USEREMAIL() = [primaryEmail])
User | Count |
---|---|
18 | |
6 | |
6 | |
5 | |
3 |