How I get the first value from enum list

Hi,

I have a EumList column. I would like to get the first selected value in the enumlist.
I tried using TOP(Table[Column], 1) in a virtual column , but I got the first value not the first selected value.

thanks!

Solved Solved
0 2 1,511
1 ACCEPTED SOLUTION

Also. TOP() returns a List, you probably want to use ANY() or INDEX(โ€ฆ,1) instead.

View solution in original post

2 REPLIES 2

Also. TOP() returns a List, you probably want to use ANY() or INDEX(โ€ฆ,1) instead.

Thanks Marc

Top Labels in this Space