Hello,
I have a field where I have a list of collaborator. I’m developping a block and I would like to get all the users ID from my field of my table.
Currently I can get the name of the collaborator with :
const base = useBase();
cont table = base.getTableByNameIfExists(“name_of_the_table”);
const value_user = my_record[0].getCellValueAsString(“Name_of_collaborator_field”);
I got the name of all my users in the value_user
But now, I would like to get the list of user ID. How can I got it ? Thank you :winking_face: .
Viken
