Hello,I am using the function a! groupsByName ("nameGroup") to get the id from the name of a group but the result returns us[Group: 123] and I have to do the treatment to get the 123.
toInteger( substitute( split( "[Group: 123]", ":" )[2], "]", "" ) )
Do you know if there is any more direct way to get it?
thank you
Discussion posts and replies are publicly visible
You can use the group() function to get its id.
Something like: group(a!groupByName("groupName"), "id")
Good option thank you very much