Editable If by user

Hello everyone,

I would like to use the editable IF column like this:

IF Line A is empty, User A and B can write
IF line A different from empty User A can write, User B can no longer write.

I tried that but I find myself in a situation where if the line is empty, no one can write โ€ฆ

IFS ([Line A] <> โ€œโ€,
USEREMAIL () = A@gmail.com,
USEREMAIL () = B @ gmail.com, false,
USEREMAIL () = B@gmail.com, true,)

1 6 92
6 REPLIES 6

IF(ISBLANK([Line A]),TRUE,
IF(AND(ISNOTBLANK([Line A]),UserEmail()="A@Gmail.com"),TRUE,
FALSE))

Simon@1minManager.com

I canโ€™t edit with all profiles if the column A is no empty

Steve
Platinum 4
Platinum 4

Try this:

IF
  ISBLANK([Line A]),
  IN(USEREMAIL(), LIST("A@gmail.com", "B@gmail.com")),
  IN(USEREMAIL(), LIST("A@gmail.com"))
)

Hello Steve,

Is there an advantage using LIST() instead of the { } notion in this case? I mean with IN()?

Thanks much!

In this case, no. I generally avoid the {} notation as a personal preference.

Thanks a LOT ! it works

Top Labels in this Space