Checkbox field with Groups as values

Is it possible to add a checkbox-field on a form with all ‘groups’ from the names.nsf as values?

I want to create a ‘new employee’ database in which the head of the department can also tell of what groups this new person should be member of.

I tried to use a @dblookup but I don’t know what to use as ‘key’ because I want to see all groups.

Thanks,

Edward

Subject: checkbox field with Groups as values

Edward,

If you want all documents, use @DBColumn instead. It doesn’t worry about a key and just returns whichever column you specify.

  • Matt

Subject: RE: checkbox field with Groups as values

Thanks Matt,

That was the trick. The formula has now become:

@DbColumn(“”:“NoCache”;“”:“names.nsf”;“Groups”;2). Life can be so simple :slight_smile: