I have a table named Community where there is...

I have a table named Community where there is a column called Email. using Community[Email] as the formula of the Email field for an additional_only workflow rule results in sending an email notifications each time a new record is added. What if I want to send the notification to all the community except to the person who added the new record?

0 3 299
3 REPLIES 3

Try this Community[Email]-USEREMAIL()

You may need to convert the string to a list as in :

Community[Email]-{USEREMAIL()}

@Bellave_Jayaram Curly braces ({}) wonโ€™t interpret arguments; every argument is treated as a literal value. Instead, youโ€™d need to use the LIST() function: Community[Email] - LIST(USEREMAIL())

Top Labels in this Space