Notifying Multiple People Identified in a Column

I’m trying to notify multiple people identified in a People column (within an Automation). When I try to feed Notify() a column, it doesn’t work. I’ve also tried using List() on the column (becoming Notify(List(Column))), but that didn’t work either. Any ideas?

Screen Shot 2021-03-24 at 1.02.08 PM

Hi @Ryan_Nier ,
and welcome to Coda Community! :handshake:

Is Step 1 Result of your Automation a list of rows?
In that case, Approved by (People) would be a list of a list of people.

In that case, you could try

Step 1 Result.Approved By (People)
  .ListCombine() // "flatten" into a single list
  .Unique() // remove potential duplicates

I hope it helps.
Cheers!

3 Likes

Looks like it worked. Thank you!

1 Like