Forum Discussion
Filtering a column with delimiter
- Anonymous7 years ago
It is not possible. But I could suggest you to modify the measure so that directly you can refer measure instead of the column. But there must be atleast a column from the table which you are searching.
Try this formula,
Filter Found Measure3 =var text_to_find = SELECTEDVALUE(Table2[Column1])var text_to_search = MAX(Table3[Column2])VAR FIND_RES = FIND(text_to_find,text_to_search,1,BLANK())return IF(FIND_RES >= 1, text_to_search)Now you no need to worry about hiding.Let me know if it is making sense.Thanks
There is no need of adding relationship. You are referring the filter column in measure. So can you remove the filter and try?
Try this and add this measure and T1[Values] column to visual without adding relationship to tables.
Filter Found Measure =
var text_to_find = SELECTEDVALUE(T2[Column2])
var text_to_search = MAX(T1[Values])
return FIND(text_to_find,text_to_search,1,BLANK())
- aa_KF7 years agoHelper I
Hi Anonymous The slicer still doesn't take the measure as vlaue :)
- Anonymous7 years agoNot applicable
I was able to filter. Are you adding the measure to visual?
It's working
- aa_KF7 years agoHelper I
Anonymous It is working! Thanks!!
Is there a way that it could work without adding the measure in the table?