Filter a VIEW by domain

Hi,

I’ve made a Dashboard view with a collection of chart (ref) views. I would like to make this view only available for user with a certain domain. Is this possible?

Solved Solved
0 5 363
1 ACCEPTED SOLUTION

This did not work for me. Do i need to specify a LIST? My solutions now is this: (USERROLE()=“Admin”)

View solution in original post

5 REPLIES 5

Do you mean the whole Dashboard view or just that one view from that Dashboard?

I mean the whole Dashboard view. (contains 4 chart views in REF mode)

In the view’s Show if:

IN(
  SPLIT(
    USEREMAIL(),
    "@"
  ),
  LIST(
    "google.com",
    "yahoo.com",
    "aol.com
  )
)

This did not work for me. Do i need to specify a LIST? My solutions now is this: (USERROLE()=“Admin”)

No need for list. You can do that with the Userrole().

Top Labels in this Space