Can you dereference an EnumList base type Reference?

Hello,

Can you dereference an EnumList base type Reference Column?
I did try it and it doesn’t work, but I’m asking in case there is some button I haven’t seen or something…I can also live without it but if there is a workaround to make that possible it would be great.

Also, I see you cannot check the IsPartOf if the Ref is an EnumList…I wonder why?

Thank you,
Sorin

Solved Solved
0 3 440
1 ACCEPTED SOLUTION

Steve
Platinum 4
Platinum 4

Nope. But you can use the list item as input to LOOKUP(). E.g., LOOKOP(INDEX([_THISROW].[EnumListCol], 4), "MyTable", "MyLookupCol", "MyResultCol").

View solution in original post

3 REPLIES 3

Steve
Platinum 4
Platinum 4

Nope. But you can use the list item as input to LOOKUP(). E.g., LOOKOP(INDEX([_THISROW].[EnumListCol], 4), "MyTable", "MyLookupCol", "MyResultCol").

You can also list everything associated as well:

Select(MyTable[MyResultCol], in([MyLookupCol], [_thisrow].[EnumListCol]))

Perfetc, good to know.

Thank you

Top Labels in this Space