Displaying Multiple List values based on Selected Enum List Values

Dear Community,
I have a form where I need to display the values of various Descriptions of Work based on the Nature of Work selected which is an Enum List value.
I usually use a Select command for the selection based on the Single Nature of Work value. But, I am stuck with the multiple Nature of Work values & the corresponding Descriptions.

Any help would be greatly appreciated.

Thank you.

Solved Solved
0 4 353
1 ACCEPTED SOLUTION

You could write it like SELECT(TableName[Description],IN([Nature of Work],[_THISROW].[Nature of Work]))

View solution in original post

4 REPLIES 4

You could write it like SELECT(TableName[Description],IN([Nature of Work],[_THISROW].[Nature of Work]))

Thank you Aleksi!

Unfortunately, this is showing just 2 or 3 Description of Works.
Initially, I was having the Table as
Nature of Work a b
a xxx ABC
b yyy DEF

The formula was useful but itโ€™s just showing few items.

Now, I have changed the same schema as mentioned below.
2X_6_68794c24c131de529991e6011c182a8f1b4f1ccb.png

I would like the formula to be changed to show the list of items as per the Nature of Work selected.

Thank you.

Iโ€™ve got it with the formula ->
sort(
Select(Work Master[Description of Work],IN([Nature of Work],[_THISROW].[Nature of Work]))
)

Thank you anyways.

Top Labels in this Space