Dependend enumlist with values which are not selected in other Enumlist

Hi,

 

In a row I have two enumlists of the basetype ref. both refer to the same table.

Is it posssible to make sure that in the enumlists values which are selected in the other list can't be selected anymore?

 

I tried NOT(IN([Clubkey],[_thisrow].[Clubkey])) 

 

 

Solved Solved
0 6 169
1 ACCEPTED SOLUTION

Just try: 

SPLIT(List(clubs[ClubKey]),“,”) - [ClubKey]

If it doesn't work, please show your table columns.

View solution in original post

6 REPLIES 6

I still can't get it working..

SPLIT(List(clubs[ClubKey]),“,”)
- List([_thisrow].[ClubKey])

works, but not onchange on the form. So it only looks at saved data

Just try: 

SPLIT(List(clubs[ClubKey]),“,”) - [ClubKey]

If it doesn't work, please show your table columns.

SPLIT(clubs[ClubKey],“,”) - [ClubKey] should be sufficient, without LIST().

Oh yes. Thank you @Steve !!

BOOM! thanks this works!

Top Labels in this Space