hi there
I have a multi select list field and we choose values , and we also have a field of text and it may have the values from the list , seperated by commas.
for example the list has A B C D E. the user selected A,B
the text might have A,B,D as text
now I want to write
Count(
Filter(
[Issue.Epic].[Epic].Members,
(InStr([Measures].[Issue textfield],[Measures].[Issue listfield]) > 0 )))
Hi Aya,
The direction is correct, however, there could be cases when it does not return true. For example if user selected A and C from the list and Issue listfield has value “A,C”, but the text field has “A,B,C” or even “A, C” with extra space, this would not return true.
Try the following code, adjusting for your real dimension names: