Need to give alert in Enumlist

I am having the column with Enumlist with Ref of employee table with key value of Email ID

I should not select my name in that column i need to give some alert as invalid

I tried with Email id <>USEREMAIL in if valid ,but its not working for me

Can you help me with this ?

Solved Solved
0 4 164
1 ACCEPTED SOLUTION

Try:

FILTER( Employee , [Email ID] <> USEREMAIL() )

View solution in original post

4 REPLIES 4

An Enumlist column will return a List type. So your valid_if probably needs to be something like this:

NOT( IN( USEREMAIL() , [_THIS] ) )


I am getting an error with this.

Try:

FILTER( Employee , [Email ID] <> USEREMAIL() )

Thanks,working.

Top Labels in this Space