Action Button need to hide

I am having a action button approve only for the department heads
The user will submit a record for more than one department head
Action button will appear for the corresponding department heads,if one department head approve the action button should not show to them,the remaining department heads should see the action button.
Can suggest some expression ??

Solved Solved
0 13 337
1 ACCEPTED SOLUTION

Oops! Try this instead:

ISBLANK(
  FILTER(
    "log table",
    AND(
      ([Email ID] = USEREMAIL()),
      ([_THISROW].[Record ID] = [Record ID])
    )
  )
)

View solution in original post

13 REPLIES 13
Top Labels in this Space